Overview
Comment: | Updated to include all encodings by default, but support including only the 8 from original Tclkit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | bf4e895d30e66737ae89881310c73de8880ef3ee |
User & Date: | rkeene on 2010-09-26 04:41:52 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:41 | Cleaned up cleaning up routine check-in: e71a022c66 user: rkeene tags: trunk | |
04:41 | Updated to include all encodings by default, but support including only the 8 from original Tclkit check-in: bf4e895d30 user: rkeene tags: trunk | |
04:41 |
Changed the default action to remove all encodings (except 8)
Removed tcltest package from Tclkit check-in: a0f6913a43 user: rkeene tags: trunk | |
Changes
Modified README from [0ee71da19f] to [06483e4d12].
80 80 6. KITCREATOR_PKGS 81 81 Specify which non-required packages to build. The default list 82 82 is: 83 83 tk itcl mk4tcl 84 84 If mk4tcl is not present a pure-Tcl implementation will be used 85 85 instead. 86 86 87 - 7. KITCREATOR_ALLENCODINGS 87 + 7. KITCREATOR_MINENCODINGS 88 88 Set this variable to a non-empty string to generate a Tclkit 89 - with all encodings rather than the default 8: 89 + without all encodings, only including the following: 90 90 ascii.enc cp1252.enc iso8859-1.enc iso8859-15.enc 91 91 iso8859-2.enc koi8-r.enc macRoman.enc 92 92 93 93 ------------------- 94 94 Method of Operation 95 95 ------------------- 96 96 Summary:
Modified tcl/build.sh from [f2cbd6ff95] to [34c4911af7].
86 86 rm -f "${OUTDIR}"/lib/* >/dev/null 2>/dev/null 87 87 find "${OUTDIR}" -name '*.a' | xargs rm -f >/dev/null 2>/dev/null 88 88 89 89 # Clean up packages that are not needed 90 90 find "${OUTDIR}" -name "tcltest*" -type d | xargs rm -rf 91 91 92 92 # Clean up encodings 93 - if [ -z "${KITCREATOR_ALLENCODINGS}" ]; then 93 + if [ -n "${KITCREATOR_MINENCODINGS}" ]; then 94 94 KEEPENCODINGS=" ascii.enc cp1252.enc iso8859-1.enc iso8859-15.enc iso8859-2.enc koi8-r.enc macRoman.enc " 95 95 export KEEPENCODINGS 96 96 find "${OUTDIR}/lib" -name 'encoding' -type d | while read encdir; do 97 97 ( 98 98 cd "${encdir}" || exit 1 99 99 100 100 for file in *; do