Overview
Comment: | Updated to latest tcc4tcl |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
18a3ef02c800e439bd39b403056474d8 |
User & Date: | rkeene on 2014-07-10 16:56:06 |
Other Links: | manifest | tags |
Context
2014-07-10
| ||
16:56 | Added EOF fixes for TLS package check-in: 91e419adbd user: rkeene tags: trunk | |
16:56 | Updated to latest tcc4tcl check-in: 18a3ef02c8 user: rkeene tags: trunk | |
2014-07-07
| ||
05:03 | Updated to look for SSL in compiler standard place rather than guessing for it as is the TclTLS default check-in: b302c42baf user: rkeene tags: trunk | |
Changes
Modified tcc4tcl/build.sh from [779bc8e67b] to [ae573dea00].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then echo 'ERROR: The TCLVERS environment variable is not set' >&2 exit 1 fi | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then echo 'ERROR: The TCLVERS environment variable is not set' >&2 exit 1 fi TCC4TCLVERS="0.22" SRC="src/tcc4tcl-${TCC4TCLVERS}.tar.gz" SRCURL="http://rkeene.org/devel/tcc4tcl/tcc4tcl-${TCC4TCLVERS}.tar.gz" BUILDDIR="$(pwd)/build/tcc4tcl-${TCC4TCLVERS}" OUTDIR="$(pwd)/out" INSTDIR="$(pwd)/inst" PATCHDIR="$(pwd)/patches" export TCC4TCLVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR PATCHDIR |
︙ | ︙ |