Overview
Comment: | Updated to not support multiarch Mac OS X builds in tcc4tcl (which won't actually work with it) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b9edcbd4d2ba511b6b3f810ae8e47780 |
User & Date: | rkeene on 2014-06-22 00:51:23 |
Original Comment: | Updated to not support multiarch Mac OS X builds in tcc4tcl (which won\'t actually work with it) |
Other Links: | manifest | tags |
Context
2014-06-23
| ||
20:18 | tcc4tcl 0.21 check-in: 276fccc140 user: rkeene tags: trunk | |
2014-06-22
| ||
00:51 | Updated to not support multiarch Mac OS X builds in tcc4tcl (which won't actually work with it) check-in: b9edcbd4d2 user: rkeene tags: trunk | |
2014-06-21
| ||
22:06 | Updated tcc4tcl to rely on Tcl 8.5 or newer check-in: ba02ddd48a user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/common.sh from [1464904b80] to [d2befa5f72].
︙ | ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | fi done rm -rf out exit 0 } function download () { local url file file="$1" url="$2" | > > > > > > > > > > > > > > | 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 | fi done rm -rf out exit 0 } function not_platforms_regexp () { local platform_re for platform_re in "$@"; do if echo "${PLATFORM}" | grep -- "${platform_re}" >/dev/null; then rm -rf out exit 0 fi done return 0 } function download () { local url file file="$1" url="$2" |
︙ | ︙ |
Modified server/buildpkgs/tcc4tcl/build.sh from [c24828e782] to [bd86b0ccb4].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Load common functions source ../common.sh # Do not build if the "tcl" platform has been requested not_platforms 'tcl' # Requires Tcl 8.5 or newer setup_tcl 8.5 8.6 || exit 1 # Download source download_src # Extract package | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Load common functions source ../common.sh # Do not build if the "tcl" platform has been requested not_platforms 'tcl' # Do not support multiarch builds not_platforms_regexp '^macosx.*i386-x86_64' '^macosx.*x86_64-i386' # Requires Tcl 8.5 or newer setup_tcl 8.5 8.6 || exit 1 # Download source download_src # Extract package |
︙ | ︙ |