Overview
Comment: | Upgrade SQLite3 to 3.7.2 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | b86591f6fab5f77941b933014ede69c1153c0199 |
User & Date: | rkeene on 2010-10-17 14:46:35 |
Other Links: | manifest | tags |
Context
2011-03-30
| ||
16:07 | Added DBUS-Tcl Updated build_all to allow only building some Updated build_all to build Tcl 8.5 by default Updated the "dict" package to not attempt to build if not using Tcl 8.4 check-in: d9990833ed user: rkeene tags: trunk | |
2010-10-17
| ||
14:46 | Upgrade SQLite3 to 3.7.2 check-in: b86591f6fa user: rkeene tags: trunk | |
13:24 | Updated to remove tclWinDde.c and tclWinReg.c from Tcl 8.4.19 compile as these fail to build check-in: 60857c9f4d user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/sqlite3/build.sh from [ca2074f1e1] to [09724f9222].
8 8 9 9 if [ "${PLATFORM}" = "tcl" ]; then 10 10 rm -rf out 11 11 12 12 exit 0 13 13 fi 14 14 15 -VERS=3.6.22 15 +VERS=3.7.2 16 16 VERSUNDER="$(echo "${VERS}" | sed 's@\.@_@g')" 17 17 SRC="src/sqlite-${VERSUNDER}.tar.gz" 18 18 SRCURL="http://www.sqlite.org/sqlite-${VERSUNDER}-tea.tar.gz" 19 -BUILDDIR="sqlite-${VERSUNDER}-tea" 19 +BUILDDIR="sqlite${VERS}" 20 20 WORKDIR="${TMPDIR:-/tmp}/sqlite-$$${RANDOM}${RANDOM}${RANDOM}" 21 21 PLATDIR="$(pwd)/out/${PLATFORM}" 22 22 23 23 export VERS SRC SRCURL BUILDDIR WORKDIR PLATDIR 24 24 25 25 if [ ! -f "${SRC}" ]; then 26 26 mkdir src >/dev/null 2>/dev/null