Overview
| Comment: | Fixed building sqlite3 on non-GNU platforms | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
bd843fe232d11ebed09e8bd80b0cde58 | 
| User & Date: | rkeene on 2010-02-09 15:58:37 | 
| Other Links: | manifest | tags | 
Context
| 
   2010-02-09 
 | ||
| 21:03 | Updated to build additional HTML files check-in: e7e77fdcbc user: rkeene tags: trunk | |
| 15:58 | Fixed building sqlite3 on non-GNU platforms check-in: bd843fe232 user: rkeene tags: trunk | |
| 14:53 | Added sqlite3 compliation check-in: 1ff15eb03f user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/sqlite3/build.sh from [1bc3e7aaf5] to [c9cd8f667d].
| ︙ | ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40  | 
	mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null
	mkdir build
	cd build/ || exit 1
	gzip -dc "../${SRC}" | tar -xf -
	cd "${BUILDDIR}" || exit 1
	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  | 
	mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null
	mkdir build
	cd build/ || exit 1
	gzip -dc "../${SRC}" | tar -xf -
	cd "${BUILDDIR}" || exit 1
	chmod +x tclconfig/install-sh
	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
 | 
| ︙ | ︙ |