Differences From Artifact [83493fb613]:
- Executable file
tcl/build.sh
— part of check-in
[66930bd6ef]
at
2010-09-26 04:42:08
on branch trunk
— Added support for minimal builds
Fixed potential loading issue for zlib in pure Tcl metakit (user: rkeene, size: 2919) [annotate] [blame] [check-ins using]
To Artifact [748906fbcb]:
- Executable file tcl/build.sh — part of check-in [ec2b0ff806] at 2010-09-26 04:43:28 on branch trunk — Changed configuration encoding to use UTF-8 to work around bug where tcl::pkgconfig doesn't work because it's populated with the specified encoding, which may be a file on disk and not available. (user: rkeene, size: 2941) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
56 57 58 59 60 61 62 | cd "${BUILDDIR}" || exit 1 for dir in unix win macosx; do # Remove previous directory's "tclConfig.sh" if found rm -f 'tclConfig.sh' cd "${BUILDDIR}/${dir}" || exit 1 | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | cd "${BUILDDIR}" || exit 1 for dir in unix win macosx; do # Remove previous directory's "tclConfig.sh" if found rm -f 'tclConfig.sh' cd "${BUILDDIR}/${dir}" || exit 1 ./configure --disable-shared --with-encoding=utf-8 --prefix="${INSTDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || continue ${MAKE:-make} install || ( # Work with Tcl 8.6.x's TCLSH_NATIVE solution for # cross-compile installs |
︙ | ︙ |