Overview
Comment: | Updated to download Tcl if suitable headers cannot be found |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
806f56eb1d33a90b052c92ead89e7d97 |
User & Date: | rkeene on 2010-02-05 06:03:41 |
Other Links: | manifest | tags |
Context
2010-02-05
| ||
06:07 | Corrected documentation regarding get_extensions check-in: 3744cd1713 user: rkeene tags: trunk | |
06:03 | Updated to download Tcl if suitable headers cannot be found check-in: 806f56eb1d user: rkeene tags: trunk | |
05:43 | Added distclean target to server Updated top-level Makefile to call clean/distclean in server check-in: 6bf2170186 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/Tclx/build.sh from [68a541395b] to [5168189fc5].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | + + + + + + + + + + - + - - + + + + + + + + + + + + + + | BUILDDIR="tclx${VERS}" WORKDIR="${TMPDIR:-/tmp}/tclx-$$${RANDOM}${RANDOM}${RANDOM}" PLATFORM="$(../platform)" PLATDIR="$(pwd)/out/${PLATFORM}" export VERS SRC SRCURL BUILDDIR WORKDIR PLATFORM PLATDIR ( rm -rf build mkdir build ) || exit 1 if [ ! -f "${SRC}" ]; then mkdir src >/dev/null 2>/dev/null wget -O "${SRC}" "${SRCURL}" || exit 1 fi TCLPRIVATE="${TCLCONFIGDIR}/../include/tcl-private" if [ ! -d "${TCLPRIVATE}" ]; then if [ ! -f src/tcl8.4.19.tar.gz ]; then wget -O src/tcl8.4.19.tar.gz http://prdownloads.sourceforge.net/tcl/tcl8.4.19-src.tar.gz fi |
︙ | |||
73 74 75 76 77 78 79 | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | - - - - - - - - | - char *srcChannelId, *targetChannelId; + char *srcChannelId = NULL, *targetChannelId; if ((objc < 2) || (objc > 3)) { return TclX_WrongArgs (interp, objv [0], __EOF__ |