Rev 3700 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# This is a hand-written shell scriptcd srcecho "---- unpacking SQLite ----"rm -rf SQLitetar zxf ../sqlite-3.3.13.tar.gzmv sqlite-3.3.13 SQLitecd SQLiteecho "---- configuring SQLite ----"## remove chmod, change to lssed -e 's/chmod +x/ls /g; s/chmod u+w/ls /g; s/chmod \d\{3\}/ls /g; s/chmod/ls /g' configure > configure.tmpmv configure.tmp configureexport CONFIG_SHELL=shsh configure --build=i386-pc-mingw32 --disable-sharedecho "---- making SQLite ----"mv src/sqliteInt.h src/sqliteInt.h.tempsed -e 's/MAX_ATTACHED 10/MAX_ATTACHED 31/' src/sqliteInt.h.temp > src/sqliteInt.h## most lines have '$(NAWK)', but one has 'awk'sed -e 's+./libtool+ sh libtool+' -e's/awk -f /gawk -f/' Makefile > Makefile.tmp## for some reason opcodes.h gets made incorrectlymake -f Makefile.tmp parse.c opcodes.ccp ../win/opcodes.h opcodes.htouch opcodes.hmake -f Makefile.tmpcp .libs/libsqlite3.a .