Differences From Artifact [d8510101cc]:
- Executable file kitcreator — part of check-in [b7219bed1a] at 2016-08-02 03:19:39 on branch trunk — Fix typos causing --disable-threads to fail to work sometimes and the "thread" package to not be included when --enable-threads is passed sometimes (user: rkeene, size: 6998) [annotate] [blame] [check-ins using]
To Artifact [5a0fe6c78b]:
- Executable file kitcreator — part of check-in [73d93286c9] at 2016-08-03 14:28:49 on branch trunk — Added Tcl/Tk 8.6.6 in various places (user: rkeene, size: 6998) [annotate] [blame] [check-ins using]
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
clean|distclean|build|retry)
mode="$1"
shift
;;
esac
# Determine which Tcl version to build
TCLVERS="8.6.5"
if echo "$1" | grep '^[0-9][0-9]*\.' >/dev/null || echo "$1" | egrep '^(cvs|fossil)_' >/dev/null; then
TCLVERS="$1"
shift
fi
export TCLVERS
|
| |
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
clean|distclean|build|retry)
mode="$1"
shift
;;
esac
# Determine which Tcl version to build
TCLVERS="8.6.6"
if echo "$1" | grep '^[0-9][0-9]*\.' >/dev/null || echo "$1" | egrep '^(cvs|fossil)_' >/dev/null; then
TCLVERS="$1"
shift
fi
export TCLVERS
|