Overview
Comment: | Updated to remove tclWinDde.c and tclWinReg.c from Tcl 8.4.19 compile as these fail to build |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 60857c9f4d3f7abbf7656fd4b6d60cfc3fb7e559 |
User & Date: | rkeene on 2010-10-17 13:24:56 |
Other Links: | manifest | tags |
Context
2010-10-17
| ||
14:46 | Upgrade SQLite3 to 3.7.2 check-in: b86591f6fa user: rkeene tags: trunk | |
13:24 | Updated to remove tclWinDde.c and tclWinReg.c from Tcl 8.4.19 compile as these fail to build check-in: 60857c9f4d user: rkeene tags: trunk | |
12:54 | Added TclPCKS11 build script Reworked build script for Tcl to install Tcl and set TCLCONFIGDIR to installed location check-in: b759ce7ece user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build_all.sh from [af64eaf700] to [839f9aa1bd].
44 44 fi 45 45 46 46 echo "Building Tcl ${TCLVERS}" 47 47 ( 48 48 mkdir tcl/build >/dev/null 2>/dev/null 49 49 cd tcl/build || exit 1 50 50 gzip -dc "../src/tcl${TCLVERS}.tar.gz" | tar -xf - 51 + 52 + # DDE and Reg can fail to compile, but we don't care 53 + echo '' > "${TCLPRIVATE}/win/tclWinDde.c" 54 + echo '' > "${TCLPRIVATE}/win/tclWinReg.c" 51 55 52 56 for dir in unix win macosx; do 53 57 cd "${TCLPRIVATE}/${dir}" || exit 1 54 58 55 59 echo " Executing: ./configure ${CONFIGUREEXTRA}" 56 60 ./configure --disable-threads ${CONFIGUREEXTRA} --prefix="${TCLINSTDIR}" 57 61