Overview
Comment: | Upgraded to Tcl/Tk 8.6.9 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | f13053c0b5212035919374afc390564c108920ba |
User & Date: | rkeene on 2019-02-03 21:09:07 |
Other Links: | manifest | tags |
Context
2019-02-04
| ||
14:55 | Made KitCreator web interface able to disable options based on KitCreator version check-in: 92177746f4 user: rkeene tags: trunk | |
2019-02-03
| ||
21:09 | Upgraded to Tcl/Tk 8.6.9 check-in: f13053c0b5 user: rkeene tags: trunk | |
21:04 | Add web interface for Duktape check-in: d9174308ba user: rkeene tags: trunk | |
Changes
Modified build/test/test from [f3c6a57f7d] to [0f58abd23a].
1 1 #! /bin/bash 2 2 3 -VERSIONS="8.5.19 8.6.8 fossil_trunk" 3 +VERSIONS="8.5.19 8.6.9 fossil_trunk" 4 4 5 5 # Find the base directory 6 6 for x in 1 2 3 4 __fail__; do 7 7 if [ "${x}" = "__fail__" ]; then 8 8 echo 'Unable to find KitCreator, aborting.' >&2 9 9 10 10 exit 1
Modified build/web/kitcreator.vfs/index.rvt from [c5e0fc4363] to [787ecac4e4].
24 24 set tcl_versions(8.6.2) 8.6.2 25 25 set tcl_versions(8.6.3) 8.6.3 26 26 set tcl_versions(8.6.4) 8.6.4 27 27 set tcl_versions(8.6.5) 8.6.5 28 28 set tcl_versions(8.6.6) 8.6.6 29 29 set tcl_versions(8.6.7) 8.6.7 30 30 set tcl_versions(8.6.8) 8.6.8 31 + set tcl_versions(8.6.9) 8.6.9 31 32 set tcl_versions(fossil_trunk) "Fossil Trunk Tip" 32 33 33 34 set platforms(android-arm) "Android/ARM" 34 35 set platforms(freebsd-amd64) "FreeBSD/amd64" 35 36 set platforms(hpux-hppa64) "HP-UX/PA-RISC 2.0" 36 37 set platforms(aix-ppc) "AIX/POWER" 37 38 set platforms(linux-amd64) "Linux/amd64"
Modified kitcreator from [a7fd0360c3] to [5183dd0c35].
9 9 clean|distclean|build|retry) 10 10 mode="$1" 11 11 shift 12 12 ;; 13 13 esac 14 14 15 15 # Determine which Tcl version to build 16 -TCLVERS="8.6.8" 16 +TCLVERS="8.6.9" 17 17 if echo "$1" | grep '^[0-9][0-9]*\.' >/dev/null || echo "$1" | egrep '^(cvs|fossil)_' >/dev/null; then 18 18 TCLVERS="$1" 19 19 20 20 shift 21 21 fi 22 22 export TCLVERS 23 23
Modified tcl/build.sh from [1501438fba] to [5b6c5b51df].
42 42 ;; 43 43 8.6.7) 44 44 SRCHASH='7c6b8f84e37332423cfe5bae503440d88450da8cc1243496249faa5268026ba5' 45 45 ;; 46 46 8.6.8) 47 47 SRCHASH='c43cb0c1518ce42b00e7c8f6eaddd5195c53a98f94adc717234a65cbcfd3f96a' 48 48 ;; 49 + 8.6.9) 50 + SRCHASH='ad0cd2de2c87b9ba8086b43957a0de3eb2eb565c7159d5f53ccbba3feb915f4e' 51 + ;; 49 52 esac 50 53 51 54 # Set configure options for this sub-project 52 55 LDFLAGS="${LDFLAGS} ${KC_TCL_LDFLAGS}" 53 56 CFLAGS="${CFLAGS} ${KC_TCL_CFLAGS}" 54 57 CPPFLAGS="${CPPFLAGS} ${KC_TCL_CPPFLAGS}" 55 58 LIBS="${LIBS} ${KC_TCL_LIBS}"
Modified tk/build.sh from [fa60b362d4] to [7d5a34e456].
42 42 ;; 43 43 8.6.7) 44 44 SRCHASH='061de2a354f9b7c7d04de3984c90c9bc6dd3a1b8377bb45509f1ad8a8d6337aa' 45 45 ;; 46 46 8.6.8) 47 47 SRCHASH='49e7bca08dde95195a27f594f7c850b088be357a7c7096e44e1158c7a5fd7b33' 48 48 ;; 49 + 8.6.9) 50 + SRCHASH='d3f9161e8ba0f107fe8d4df1f6d3a14c30cc3512dfc12a795daa367a27660dac' 51 + ;; 49 52 esac 50 53 51 54 # Set configure options for this sub-project 52 55 LDFLAGS="${LDFLAGS} ${KC_TK_LDFLAGS}" 53 56 CFLAGS="${CFLAGS} ${KC_TK_CFLAGS}" 54 57 CPPFLAGS="${CPPFLAGS} ${KC_TK_CPPFLAGS}" 55 58 LIBS="${LIBS} ${KC_TK_LIBS}"