| Line 8... |
Line 8... |
| 8 |
cd SQLite
|
8 |
cd SQLite
|
| 9 |
echo "---- configuring SQLite ----"
|
9 |
echo "---- configuring SQLite ----"
|
| 10 |
## remove chmod, change to ls
|
10 |
## remove chmod, change to ls
|
| 11 |
sed -e 's/chmod +x/ls /g; s/chmod u+w/ls /g; s/chmod \d\{3\}/ls /g; s/chmod/ls /g' configure > configure.tmp
|
11 |
sed -e 's/chmod +x/ls /g; s/chmod u+w/ls /g; s/chmod \d\{3\}/ls /g; s/chmod/ls /g' configure > configure.tmp
|
| 12 |
mv configure.tmp configure
|
12 |
mv configure.tmp configure
|
| - |
|
13 |
export CONFIG_SHELL=sh
|
| 13 |
sh configure --build=i386-pc-mingw32 --disable-shared
|
14 |
sh configure --build=i386-pc-mingw32 --disable-shared
|
| 14 |
echo "---- making SQLite ----"
|
15 |
echo "---- making SQLite ----"
|
| 15 |
mv src/sqliteInt.h src/sqliteInt.h.temp
|
16 |
mv src/sqliteInt.h src/sqliteInt.h.temp
|
| 16 |
sed -e 's/MAX_ATTACHED 10/MAX_ATTACHED 31/' src/sqliteInt.h.temp > src/sqliteInt.h
|
17 |
sed -e 's/MAX_ATTACHED 10/MAX_ATTACHED 31/' src/sqliteInt.h.temp > src/sqliteInt.h
|
| 17 |
## most lines have '$(NAWK)', but one has 'awk'
|
18 |
## most lines have '$(NAWK)', but one has 'awk'
|