Overview
| Comment: | Added file "tclkit.ico" to VFS | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
079f112af30d2f3e9aaa68b586225a85 | 
| User & Date: | rkeene on 2013-09-29 23:17:07 | 
| Other Links: | manifest | tags | 
Context
| 
   2013-09-30 
 | ||
| 06:08 | Fixed Mk4tcl compiling issue check-in: 3bd068a425 user: rkeene tags: trunk | |
| 
   2013-09-29 
 | ||
| 23:17 | Added file "tclkit.ico" to VFS check-in: 079f112af3 user: rkeene tags: trunk | |
| 
   2013-09-25 
 | ||
| 04:30 | Removed dead code check-in: 4816a85fc1 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [e99d7e9821] to [b1de5629ac].
| ︙ | ︙ | |||
101 102 103 104 105 106 107  | fi fi # Find Windows resource-related files if [ -f "kit.ico" ]; then KITCREATOR_ICON="$(pwd)/kit.ico" else  | |  | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115  | fi fi # Find Windows resource-related files if [ -f "kit.ico" ]; then KITCREATOR_ICON="$(pwd)/kit.ico" else KITCREATOR_ICON="$(echo "$(pwd)/kitsh/buildsrc"/kitsh-*/tclkit.ico)" fi if [ -f "kit.rc" ]; then KITCREATOR_RC="$(pwd)/kit.rc" else KITCREATOR_RC="$(echo "$(pwd)/kitsh/buildsrc"/kitsh-*/kit.rc)" fi export KITCREATOR_ICON KITCREATOR_RC  | 
| ︙ | ︙ | 
Modified kitsh/build.sh from [7ea93d7b1e] to [d39ebd9770].
| ︙ | ︙ | |||
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89  | 
	## Rename the "vfs" package directory to what "boot.tcl" expects
	mv 'starpack.vfs/lib'/vfs* 'starpack.vfs/lib/vfs'
	## Install "boot.tcl"
	cp 'boot.tcl' 'starpack.vfs/'
	# Figure out if zlib compiled (if not, the system zlib will be used and we
	# will need to have that present)
	ZLIBDIR="$(cd "${OTHERPKGSDIR}/zlib/inst" 2>/dev/null && pwd)"
	export ZLIBDIR
	if [ -z "${ZLIBDIR}" -o ! -f "${ZLIBDIR}/lib/libz.a" ]; then
		unset ZLIBDIR
	fi
 | > > > | |  | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101  | 
	## Rename the "vfs" package directory to what "boot.tcl" expects
	mv 'starpack.vfs/lib'/vfs* 'starpack.vfs/lib/vfs'
	## Install "boot.tcl"
	cp 'boot.tcl' 'starpack.vfs/'
	## Install "tclkit.ico"
	cp 'tclkit.ico' 'starpack.vfs/'
	# Figure out if zlib compiled (if not, the system zlib will be used and we
	# will need to have that present)
	ZLIBDIR="$(cd "${OTHERPKGSDIR}/zlib/inst" 2>/dev/null && pwd)"
	export ZLIBDIR
	if [ -z "${ZLIBDIR}" -o ! -f "${ZLIBDIR}/lib/libz.a" ]; then
		unset ZLIBDIR
	fi
	# Copy user specified kit.rc and tclkit.ico in to build directory, if found
	cp "${KITCREATOR_ICON}" "${BUILDDIR}/tclkit.ico"
	cp "${KITCREATOR_RC}" "${BUILDDIR}/kit.rc"
	# Include extra objects as required
	## Initialize list of extra objects
	EXTRA_OBJS=""
	export EXTRA_OBJS
 | 
| ︙ | ︙ | 
Modified kitsh/buildsrc/kitsh-0.0/Makefile.common.in from [79dfb5dde5] to [60b5e343af].
| ︙ | ︙ | |||
35 36 37 38 39 40 41  | ## Objects kitInit.o: kitInit.c boot.tcl.h $(EXTRA_KIT_DEPS) rechan.o: rechan.c pwb.o: pwb.c zlib.o: zlib.c ### Windows resources  | |  | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49  | ## Objects kitInit.o: kitInit.c boot.tcl.h $(EXTRA_KIT_DEPS) rechan.o: rechan.c pwb.o: pwb.c zlib.o: zlib.c ### Windows resources kit.res.o: kit.rc tclkit.ico $(RC) -o kit.res.o $(CPPFLAGS) kit.rc # Cleanup routines clean: rm -f kit kit.res.o rm -f libtclkit@KITDLL_LIB_VERSION@.@SHOBJEXT@ rm -f $(OBJS) $(EXTRA_OBJS) $(EXTRA_VFS_OBJS)  | 
| ︙ | ︙ | 
Modified kitsh/buildsrc/kitsh-0.0/kit.rc from [5b3ee21b9d] to [ddaee7b41b].
| ︙ | ︙ | |||
59 60 61 62 63 64 65  | 
    END
END
//
// Icon
//
 | |  | 59 60 61 62 63 64 65 66  | 
    END
END
//
// Icon
//
tclsh                      ICON    DISCARDABLE     "tclkit.ico"
 | 
Name change from kitsh/buildsrc/kitsh-0.0/kit.ico to kitsh/buildsrc/kitsh-0.0/tclkit.ico.
cannot compute difference between binary files