Overview
Comment: | Updated to support building Tk statically
Updated to build Tk statically on Windows |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ee99c0e5ae21dd4566e4cc00b51d73c6 |
User & Date: | rkeene on 2010-09-26 04:40:11 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:40 | Corrected inverted logic for static linking check-in: 69081b236e user: rkeene tags: trunk | |
04:40 |
Updated to support building Tk statically
Updated to build Tk statically on Windows check-in: ee99c0e5ae user: rkeene tags: trunk | |
04:40 | Comment update check-in: 496446d70e user: rkeene tags: trunk | |
Changes
Modified tk/build.sh from [ab29a29d10] to [f20054e4a2].
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | + + + + + + + + + - + + + | cd "${BUILDDIR}" || exit 1 for dir in unix win macosx; do # Remove previous directory's "tkConfig.sh" if found rm -f 'tkConfig.sh' cd "${BUILDDIR}/${dir}" || exit 1 if [ "${dir}" != "win" ]; then # Statically link Tk to Tclkit if we are compiling for # Windows STATICTK="1" fi if [ "${STATICTK}" = "1" ]; then ./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} else |