Check-in [3bff2517a1]
Overview
Comment:Enabled R*Tree SQLite3 support
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3bff2517a17e76b1ba9c49bc682319f16d2176b4
User & Date: rkeene on 2011-07-27 14:37:28
Other Links: manifest | tags
Context
2011-07-27
14:39
Updated SQLite3 description to include R*Tree notice check-in: 180730d89c user: rkeene tags: trunk
14:37
Enabled R*Tree SQLite3 support check-in: 3bff2517a1 user: rkeene tags: trunk
13:58
Updated to latest SQLite3 check-in: 958acbc40b user: rkeene tags: trunk
Changes

Modified server/buildpkgs/sqlite3/build.sh from [f1c534a317] to [c427692260].

27
28
29
30
31
32
33

34



35
36
37
38
39
40
41

	gzip -dc "../${SRC}" | tar -xf -
	cd "${BUILDDIR}" || exit 1
	cd "tea" || exit 1

	chmod +x tclconfig/install-sh


	CPPFLAGS="-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS"



	export CPPFLAGS

	bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA}

	${MAKE:-make} || exit 1

	${MAKE:-make} install-binaries PKG_DIR='' || exit 1







>
|
>
>
>







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

	gzip -dc "../${SRC}" | tar -xf -
	cd "${BUILDDIR}" || exit 1
	cd "tea" || exit 1

	chmod +x tclconfig/install-sh

	# Enable FTS3
	CPPFLAGS="${CPPFLAGS} -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS"

	# Enable RTree
	CPPFLAGS="${CPPFLAGS} -DSQLITE_ENABLE_RTREE=1"
	export CPPFLAGS

	bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA}

	${MAKE:-make} || exit 1

	${MAKE:-make} install-binaries PKG_DIR='' || exit 1