Overview
Comment: | Added support for disabling "visibility=hidden" when building KitDLL |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a49ee9121fdd12551746089399777b1a |
User & Date: | rkeene on 2011-03-03 05:01:51 |
Other Links: | manifest | tags |
Context
2011-03-03
| ||
11:30 | Updated to remove "pkgs" directory from Tcl when doing a minimal build check-in: b29659c9d1 user: rkeene tags: trunk | |
05:01 | Added support for disabling "visibility=hidden" when building KitDLL check-in: a49ee9121f user: rkeene tags: trunk | |
04:09 | Updated to support pulling Tcl and Tk from newest fossil sources. They are still likely to change in the future. check-in: f5886050c4 user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [f95adb2a3c] to [49efe2ef77].
︙ | |||
67 68 69 70 71 72 73 74 75 76 77 78 79 80 | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | + | find "tcl${TCLVERS}" '(' -name install-sh -o -name install.sh ')' -type f | xargs chmod +x tar -cf - "tcl${TCLVERS}" | gzip -c > "../${SRC}" fi rm -f "tmp-tcl.zip" "tmp-itcl.zip" "tmp-thread.zip" "tmp-tclconfig.zip" rm -rf "tcl-${CVSTAG}" "itcl-${CVSTAG}" "thread-${CVSTAG}" "tclconfig-${CVSTAG}" rm -rf "tcl${TCLVERS}" ) else rm -f "${SRC}.tmp" wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 mv "${SRC}.tmp" "${SRC}" fi fi |
︙ | |||
108 109 110 111 112 113 114 | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - - - - - - - - - - - | ( . "${patchscript}" ) fi done |
︙ |
Added tcl/patchscripts/visibility-unhidden.sh version [05e06e331d].
|
Added tcl/patchscripts/win32-dllmain.sh version [610ea73aa0].
|
Modified tk/build.sh from [54785bdfbe] to [b819ea7b3f].
︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + - + | SRC="src/tk${TCLVERS}.tar.gz" SRCURL="http://prdownloads.sourceforge.net/tcl/tk${TCLVERS}-src.tar.gz" BUILDDIR="$(pwd)/build/tk${TCLVERS}" PATCHDIR="$(pwd)/patches" OUTDIR="$(pwd)/out" INSTDIR="$(pwd)/inst" PATCHSCRIPTDIR="$(pwd)/patchscripts" |
︙ | |||
54 55 56 57 58 59 60 61 62 63 64 65 66 67 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | + | if [ -d "tk${TCLVERS}" ]; then find "tk${TCLVERS}" -name configure -type f | xargs chmod +x tar -cf - "tk${TCLVERS}" | gzip -c > "../${SRC}" fi rm -f "tmp-tk.zip" rm -rf "tk-${CVSTAG}" rm -rf "tk${TCLVERS}" ) else rm -f "${SRC}.tmp" wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 mv "${SRC}.tmp" "${SRC}" fi |
︙ | |||
96 97 98 99 100 101 102 103 104 105 106 107 108 109 | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | + + + + + + + + + + + | continue fi echo "Applying: ${patch}" ${PATCH:-patch} -p1 < "${patch}" done ) # Apply patch scripts if needed for patchscript in "${PATCHSCRIPTDIR}"/*.sh; do if [ -f "${patchscript}" ]; then echo "Running patch script: ${patchscript}" ( . "${patchscript}" ) fi done for dir in unix win macosx win64 __fail__; do if [ "${dir}" = "__fail__" ]; then exit 1 fi # Windows/amd64 workarounds |
︙ |
Added tk/patchscripts/visibility-unhidden.sh version [05e06e331d].
|