Overview
| Comment: | Updated documentation and tests to reflect change to remove bundled packages during a minimal build | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
acdbe69639ddc1b43eb3d33362223068 | 
| User & Date: | rkeene on 2011-03-04 19:00:55 | 
| Other Links: | manifest | tags | 
Context
| 
   2011-03-07 
 | ||
| 07:02 | Updated to weaken symbols from non-Tcl/Tk related libraries in KitDLL check-in: af522d011f user: rkeene tags: trunk | |
| 
   2011-03-04 
 | ||
| 19:00 | Updated documentation and tests to reflect change to remove bundled packages during a minimal build check-in: acdbe69639 user: rkeene tags: trunk | |
| 
   2011-03-03 
 | ||
| 16:02 | Renamed "arm" to "mipsel", which is more correct check-in: 87adc4a193 user: rkeene tags: trunk | |
Changes
Modified README from [8f0b451b52] to [6e46265709].
| ︙ | ︙ | |||
124 125 126 127 128 129 130 131 132 133 134 135 136 137  | 
			ascii.enc cp1252.enc iso8859-1.enc iso8859-15.enc
			iso8859-2.enc koi8-r.enc macRoman.enc
	9. KITCREATOR_MINBUILD
		Set this variable to a non-empty string to exclude unnecessary
		packages from Tcl build.  This excludes the following packages:
			tcltest
Kitsh Configure Options:
	1. --enable-kit-storage={zip|mk4|auto}
		Specify which type of storage to use with the Tclkit.  The
		default is to auto-detect.  Auto-detection uses Mk4 if
		available and built statically, otherwise it falls back to Zip.
 | > > > >  | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141  | 
			ascii.enc cp1252.enc iso8859-1.enc iso8859-15.enc
			iso8859-2.enc koi8-r.enc macRoman.enc
	9. KITCREATOR_MINBUILD
		Set this variable to a non-empty string to exclude unnecessary
		packages from Tcl build.  This excludes the following packages:
			tcltest
		Additionally, any bundled packages (in the "pkgs" directory)
		are excluded.  This typically includes (as of Tcl 8.6):
			itcl thread
Kitsh Configure Options:
	1. --enable-kit-storage={zip|mk4|auto}
		Specify which type of storage to use with the Tclkit.  The
		default is to auto-detect.  Auto-detection uses Mk4 if
		available and built statically, otherwise it falls back to Zip.
 | 
| ︙ | ︙ | 
Modified build/test/tests/12-threads.tcl from [6b4f8edcc8] to [7bfac57b1d].
| ︙ | ︙ | |||
14 15 16 17 18 19 20  | 
		if {[lsearch -exact $buildflags "threaded"] == -1} {
			set isthreaded 0
		} else {
			set isthreaded 1
		}
	}
 | | |  | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29  | 
		if {[lsearch -exact $buildflags "threaded"] == -1} {
			set isthreaded 0
		} else {
			set isthreaded 1
		}
	}
	# Minimal builds don't come with threads.
	if {[lsearch -exact $buildflags "min"] != -1} {
		set isthreaded 0
	}
	if {!$isthreaded} {
		exit 0
	}
 | 
| ︙ | ︙ |