Overview
Comment: | Added support for specifying what version of Tcl to build
Updated documentation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c151e65b1debf7b8b69ea9de64606cd7 |
User & Date: | rkeene on 2010-09-26 04:38:39 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:38 | KitCreator 0.0.4.x check-in: bc156bdbe1 user: rkeene tags: trunk, 0.0.4 | |
04:38 |
Added support for specifying what version of Tcl to build
Updated documentation check-in: c151e65b1d user: rkeene tags: trunk | |
04:38 | Updated to use public interface for SetStartupScript/GetStartupScript if it is found, otherwise use the old interface. check-in: 399b8095e3 user: rkeene tags: trunk | |
Changes
Modified README from [f69d781deb] to [ee845dc1ff].
1 2 3 | This will build a Tclkit named "tclkit-<version>". Usage: | > > > > > > > > > | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | This will build a Tclkit named "tclkit-<version>". Usage: kitcreator {<version> | cvs_<cvsTag> | clean | distclean} Default is to create a Tclkit from Tcl version 8.4.19 Examples: 1. Create a Tclkit for Tcl 8.5.8: $ ./kitcreator 8.5.8 2. Create a Tclkit for Tcl from CVS HEAD: $ ./kitcreator cvs_HEAD 3. To clean up post-build: $ ./kitcreator clean |
Modified kitcreator from [de910503cc] to [fd35339ae1].
1 2 3 4 5 6 7 8 9 10 | #! /bin/bash TCLVERS="8.4.19" export TCLVERS mode="build" if [ "$1" = "clean" ]; then shift mode="clean" | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #! /bin/bash TCLVERS="8.4.19" if echo "$1" | grep '^[0-9][0-9]*\.' >/dev/null || echo "$1" | grep '^cvs_' >/dev/null; then TCLVERS="$1" shift fi export TCLVERS mode="build" if [ "$1" = "clean" ]; then shift mode="clean" |
︙ | ︙ |