Rev 3446 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#! /bin/sh# This is a hand-written shell scriptif test ! -d src/SQLite; then(cd src; gzip -dc ../sqlite-3*.tar.gz | tar -xf -)(cd src; ln -s sqlite-3* SQLite)(cd src/SQLite; mv src/sqliteInt.h src/sqliteInt.h.orig; sed -e 's/MAX_ATTACHED 10/MAX_ATTACHED 31/' src/sqliteInt.h.orig > src/sqliteInt.h)fiif test ! -f src/SQLite/Makefile; then(cd src/SQLite; ./configure --disable-shared)fi(cd src/SQLite; make)