Differences From Artifact [fd8671763c]:
- Executable file build/make-minkit — part of check-in [7596e618f3] at 2010-09-26 04:42:16 on branch trunk — Added internal script to build a minimal Tclkit (user: rkeene, size: 206) [annotate] [blame] [check-ins using]
To Artifact [440fcc9f64]:
- Executable file
build/make-minkit
— part of check-in
[e143e5ef08]
at
2010-10-02 08:39:55
on branch trunk
— Updated Minkit build scripts to support buildint KitDLL
Added fix for building KitDLL on platforms without working "strtod"
Updated to support compiling TclVFS extension with "-fPIC" when building KitDLL (user: rkeene, size: 307) [annotate] [blame] [check-ins using]
1 2 3 | #! /bin/sh # Build minimalistic tclkit | > > > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/sh # Build minimalistic tclkit if echo " ${KITCREATOR_PKGS} " | grep ' kitdll ' >/dev/null; then KITCREATOR_PKGS="kitdll" else KITCREATOR_PKGS=" " fi KITCREATOR_MINENCODINGS='true' KITCREATOR_MINBUILD='true' export KITCREATOR_PKGS KITCREATOR_MINENCODINGS KITCREATOR_MINBUILD ./kitcreator "$@" |