Differences From Artifact [af64eaf700]:
- Executable file server/buildpkgs/build_all.sh — part of check-in [b759ce7ece] at 2010-10-17 12:54:27 on branch trunk — Added TclPCKS11 build script Reworked build script for Tcl to install Tcl and set TCLCONFIGDIR to installed location (user: rkeene, size: 4518) [annotate] [blame] [check-ins using]
To Artifact [839f9aa1bd]:
- Executable file server/buildpkgs/build_all.sh — part of check-in [60857c9f4d] at 2010-10-17 13:24:56 on branch trunk — Updated to remove tclWinDde.c and tclWinReg.c from Tcl 8.4.19 compile as these fail to build (user: rkeene, size: 4662) [annotate] [blame] [check-ins using]
︙ | |||
44 45 46 47 48 49 50 51 52 53 54 55 56 57 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | + + + + | fi echo "Building Tcl ${TCLVERS}" ( mkdir tcl/build >/dev/null 2>/dev/null cd tcl/build || exit 1 gzip -dc "../src/tcl${TCLVERS}.tar.gz" | tar -xf - # DDE and Reg can fail to compile, but we don't care echo '' > "${TCLPRIVATE}/win/tclWinDde.c" echo '' > "${TCLPRIVATE}/win/tclWinReg.c" for dir in unix win macosx; do cd "${TCLPRIVATE}/${dir}" || exit 1 echo " Executing: ./configure ${CONFIGUREEXTRA}" ./configure --disable-threads ${CONFIGUREEXTRA} --prefix="${TCLINSTDIR}" |
︙ |