Differences From Artifact [9d057a0710]:
- Executable file kitdll/build.sh — part of check-in [5518df71a4] at 2010-10-06 02:52:08 on branch trunk — Updated to include Zlib headers if we found Zlib library for KitDLL (user: rkeene, size: 3422) [annotate] [blame] [check-ins using]
To Artifact [4e8a270142]:
- Executable file
kitdll/build.sh
— part of check-in
[3f354ca762]
at
2011-05-19 23:00:45
on branch trunk
— Updated to try harder to look for a working Tcl interpreter for building KitDLL
Updated to return in failure if installvfs fails (user: rkeene, size: 3455) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
45 46 47 48 49 50 51 | "${AR:-ar}" cr "${archive}" *.o || exit 1 "${RANLIB:-ranlib}" "${archive}" || true ) done # Determine how we invoke a Tcl interpreter | | | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | "${AR:-ar}" cr "${archive}" *.o || exit 1 "${RANLIB:-ranlib}" "${archive}" || true ) done # Determine how we invoke a Tcl interpreter for testsh in "${TCLSH_NATIVE:-false}" tclsh tclsh8.4 tclsh8.5 tclsh8.6 "${TCLKIT:-tclkit}"; do if echo 'exit 0' | "${testsh}" >/dev/null 2>/dev/null; then TCLSH_NATIVE="${testsh}" break fi done |
︙ | ︙ |