Overview
Comment: | Updated 8.6 builds to 8.6.3 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 02c667ab97f705f68f6b388bc72d056f677ebc10 |
User & Date: | rkeene on 2014-11-13 18:03:13 |
Other Links: | manifest | tags |
Context
2014-11-14
| ||
21:43 | Corrected memory leaks in CVFS check-in: 56c0612e71 user: rkeene tags: trunk | |
2014-11-13
| ||
18:03 | Updated 8.6 builds to 8.6.3 check-in: 02c667ab97 user: rkeene tags: trunk | |
2014-10-31
| ||
16:31 | Fixed issue with ".sha1" files check-in: 2b5eb7b784 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [8c6915088c] to [5fea40c753].
1 1 #! /bin/bash 2 2 3 -VERSIONS="8.5.17 8.6.2 cvs_HEAD" 3 +VERSIONS="8.5.17 8.6.3 cvs_HEAD" 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 [21c6da1f90] to [f75acbd5b7].
16 16 set kitcreator_versions(trunk) "Fossil Trunk Tip" 17 17 18 18 set tcl_versions(8.5.15) 8.5.15 19 19 set tcl_versions(8.5.16) 8.5.16 20 20 set tcl_versions(8.5.17) 8.5.17 21 21 set tcl_versions(8.6.1) 8.6.1 22 22 set tcl_versions(8.6.2) 8.6.2 23 + set tcl_versions(8.6.3) 8.6.3 23 24 set tcl_versions(fossil_trunk) "Fossil Trunk Tip" 24 25 25 26 set platforms(android-arm) "Android/ARM" 26 27 set platforms(freebsd-amd64) "FreeBSD/amd64" 27 28 set platforms(hpux-hppa64) "HP-UX/PA-RISC 2.0" 28 29 set platforms(linux-amd64) "Linux/amd64" 29 30 set platforms(linux-amd64-static) "Linux/amd64 (static)"
Modified kitcreator from [41fe7ec950] to [55f8d0b919].
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.2" 16 +TCLVERS="8.6.3" 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