Overview
Comment: | Fix typos causing --disable-threads to fail to work sometimes and the "thread" package to not be included when --enable-threads is passed sometimes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | b7219bed1afd7db28c6695a881c16516ce083323 |
User & Date: | rkeene on 2016-08-02 03:19:39 |
Other Links: | manifest | tags |
Context
2016-08-03
| ||
14:28 | Added Tcl/Tk 8.6.6 in various places check-in: 73d93286c9 user: rkeene tags: trunk | |
2016-08-02
| ||
03:19 | Fix typos causing --disable-threads to fail to work sometimes and the "thread" package to not be included when --enable-threads is passed sometimes check-in: b7219bed1a user: rkeene tags: trunk | |
2016-07-08
| ||
22:00 | Updated to support building libssl from the WebUI check-in: 8082796226 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [00afc10ef6] to [d8510101cc].
63 63 if [ -z "${KITCREATOR_PKGS}" ]; then 64 64 KITCREATOR_PKGS="tk itcl mk4tcl" 65 65 fi 66 66 67 67 CONFIGUREEXTRA="$@" 68 68 export CONFIGUREEXTRA 69 69 70 -if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then 71 - KITCREATOR_ADD_ENABLE_THREADS='0' 70 +if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads ' >/dev/null 2>/dev/null; then 71 + KITCREATOR_ADD_ENABLE_THREADS='1' 72 72 KITCREATOR_PKGS="${KITCREATOR_PKGS} thread" 73 -elif echo " ${CONFIGUREEXTRA} " | grep ' --disable-threads' >/dev/null 2>/dev/null; then 73 +elif echo " ${CONFIGUREEXTRA} " | grep ' --disable-threads ' >/dev/null 2>/dev/null; then 74 74 KITCREATOR_ADD_ENABLE_THREADS='0' 75 75 fi 76 76 77 77 # Determine cross-compile status 78 78 host_os="$(echo " ${CONFIGUREEXTRA} " | sed 's@^.* --host=\([^ ]*\) .*$@\1@ 79 79 t x 80 80 d