Overview
Comment: | Upgrade the ITcl package to version 3.4.2. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | bbb02df79bf5ca5dc9f997386db940e641214cd7 |
User & Date: | mistachkin on 2015-03-31 03:30:57 |
Other Links: | manifest | tags |
Context
2015-03-31
| ||
03:31 | Upgrade the Thread package to version 2.7.2. check-in: d698723d21 user: mistachkin tags: trunk | |
03:30 | Upgrade the ITcl package to version 3.4.2. check-in: bbb02df79b user: mistachkin tags: trunk | |
00:32 | Upgrade the ITcl package to version 3.4.2. Closed-Leaf check-in: ef4acb8dda user: mistachkin tags: ITcl342 | |
00:02 | Permit Tk 8.6.4 to build successfully on Windows using MinGW. Patch is fix for Tk ticket [2a70627a03]. check-in: 40dcdbac0a user: mistachkin tags: trunk | |
Changes
Modified itcl/build.sh from [c79eb69747] to [a91c158a0c].
7 7 fi 8 8 if [ -z "${TCLVERS}" ]; then 9 9 echo 'ERROR: The TCLVERS environment variable is not set' >&2 10 10 11 11 exit 1 12 12 fi 13 13 14 -ITCLVERS="3.4" 15 -ITCLVERSEXTRA="b1" 14 +ITCLVERS="3.4.2" 15 +ITCLVERSEXTRA="" 16 16 SRC="src/itcl-${ITCLVERS}.tar.gz" 17 17 SRCURL="http://sourceforge.net/projects/incrtcl/files/%5BIncr%20Tcl_Tk%5D-source/${ITCLVERS}/itcl${ITCLVERS}${ITCLVERSEXTRA}.tar.gz/download" 18 18 BUILDDIR="$(pwd)/build/itcl${ITCLVERS}" 19 19 OUTDIR="$(pwd)/out" 20 20 INSTDIR="$(pwd)/inst" 21 21 export ITCLVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR 22 22