Overview
| Comment: | Updated to use newer version of Tcl 8.5 and work with newer versions of OpenSSL |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e71b03b77276466d0632577e048ab19c |
| User & Date: | rkeene on 2014-05-06 12:10:47 |
| Other Links: | manifest | tags |
Context
|
2014-05-06
| ||
| 12:11 | Updated to latest OpenSSL check-in: 0e41fdc8db user: rkeene tags: trunk | |
| 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 | |
Changes
Modified server/buildpkgs/build_all.sh from [7cb89510eb] to [eb0726486d].
| ︙ | ︙ | |||
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.15 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)"
|
| ︙ | ︙ | |||
185 186 187 188 189 190 191 |
# Build all appropriate directories
faileddirs=""
if [ -z "${DIRS}" ]; then
DIRS="`echo */`"
PKGHASHCODE=''
else
| | | 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# Build all appropriate directories
faileddirs=""
if [ -z "${DIRS}" ]; then
DIRS="`echo */`"
PKGHASHCODE=''
else
PKGHASHCODE="$((echo "${DIRS}" | tr ' ' "\n" | sort | tr "\n" ' '; echo ) | sed 's@[/ ]@@g' | openssl sha1 | sed 's@^.*= *@@')"
fi
for dir in ${DIRS}; do
export dir
if [ ! -f "${dir}/build.sh" ]; then
continue
fi
|
| ︙ | ︙ |