Overview
| Comment: | Added support for the Thread package if asked to compile a threaded Tcl |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
021ebbd5e8c8865e84d1afc21900f00e |
| User & Date: | rkeene on 2010-09-26 04:41:28 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 04:41 |
Clarified licensing terms
Updated "clean"/"distclean" options to clean optional packages check-in: e251d16623 user: rkeene tags: trunk | |
| 04:41 | Added support for the Thread package if asked to compile a threaded Tcl check-in: 021ebbd5e8 user: rkeene tags: trunk | |
| 04:41 | Added support for specifying a STRIP environment variable check-in: d2e00f0f73 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [b45aa7beb7] to [b2dce588fe].
| ︙ | |||
18 19 20 21 22 23 24 25 26 27 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | + + + + + - + |
shift
mode="distclean"
fi
CONFIGUREEXTRA="$@"
export CONFIGUREEXTRA
# Add packages implied by the additional arguments
if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then
ADDPKGS="${ADDPKGS} thread"
fi
failedpkgs=""
buildfailed="0"
|
| ︙ |
Added thread/build.sh version [6ffd493472].
|