Overview
| Comment: | Updated to Tcl 8.5.12 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6b2622b683828f05fcd6116a1f649272 |
| User & Date: | rkeene on 2012-08-19 16:50:45 |
| Other Links: | manifest | tags |
Context
|
2014-05-06
| ||
| 12:10 | Updated to use newer version of Tcl 8.5 and work with newer versions of OpenSSL check-in: e71b03b772 user: rkeene tags: trunk | |
|
2012-08-19
| ||
| 16:50 | Updated to Tcl 8.5.12 check-in: 6b2622b683 user: rkeene tags: trunk | |
| 16:50 | Upgraded to tcllib 1.14 check-in: b61e6038a8 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build_all.sh from [0884ea1589] to [7cb89510eb].
| ︙ | ︙ | |||
32 33 34 35 36 37 38 |
rm -rf tcl
fi
if [ "${CLEANONLY}" = "0" ]; then
PROJROOTDIR="$(pwd)"
export PROJROOTDIR
| | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
rm -rf tcl
fi
if [ "${CLEANONLY}" = "0" ]; then
PROJROOTDIR="$(pwd)"
export PROJROOTDIR
for TCLVERS in 8.5.12 8.4.19; do
TCLSHORTVERS="$(echo "${TCLVERS}" | cut -f 1-2 -d '.')"
TCLPRIVATE="$(pwd)/tcl/build/tcl${TCLVERS}"
TCLINSTDIR="$(pwd)/tcl/inst-${TCLSHORTVERS}"
export TCLVERS TCLPRIVATE TCLINSTDIR
if [ -f "${TCLINSTDIR}/lib/tclConfig.sh" ]; then
echo "Skipping build of Tcl ${TCLVERS} (already found)"
|
| ︙ | ︙ |