Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the publish scripts to correctly build the TCL DLL for windows. (CVS 3020) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5254874a96acf89fe5f76c1628057b73 |
User & Date: | drh 2006-01-24 02:00:32.000 |
Context
2006-01-24
| ||
02:19 | Sqlite3_analyzer reports an error if it runs into trouble. (CVS 3021) (check-in: 388b926228 user: drh tags: trunk) | |
02:00 | Update the publish scripts to correctly build the TCL DLL for windows. (CVS 3020) (check-in: 5254874a96 user: drh tags: trunk) | |
00:40 | Version 3.3.2 (beta) (CVS 3019) (check-in: 1fdde6c506 user: drh tags: trunk) | |
Changes
Changes to mkdll.sh.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh # # This script is used to compile SQLite into a DLL. # # Two separate DLLs are generated. "sqlite3.dll" is the core # library. "tclsqlite3.dll" contains the TCL bindings and is the # library that is loaded into TCL in order to run SQLite. # make target_source cd tsrc PATH=$PATH:/opt/mingw/bin TCLDIR=/home/drh/tcltk/846/win/846win TCLSTUBLIB=$TCLDIR/libtcl84stub.a | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/sh # # This script is used to compile SQLite into a DLL. # # Two separate DLLs are generated. "sqlite3.dll" is the core # library. "tclsqlite3.dll" contains the TCL bindings and is the # library that is loaded into TCL in order to run SQLite. # make target_source cd tsrc PATH=$PATH:/opt/mingw/bin TCLDIR=/home/drh/tcltk/846/win/846win TCLSTUBLIB=$TCLDIR/libtcl84stub.a OPTS='-DUSE_TCL_STUBS=1 -DNDEBUG=1 -DTHREADSAFE=1 -DBUILD_sqlite=1' CC="i386-mingw32msvc-gcc -O2 $OPTS -I. -I$TCLDIR" rm shell.c for i in *.c; do CMD="$CC -c $i" echo $CMD $CMD done |
︙ | ︙ |
Changes to publish.sh.
︙ | ︙ | |||
109 110 111 112 113 114 115 | mv $HOME/rpm/RPMS/i386/sqlite*-$vers*.rpm doc mv $HOME/rpm/SRPMS/sqlite-$vers*.rpm doc # Build the website # #cp $srcdir/../historical/* doc make doc | > > | 109 110 111 112 113 114 115 116 117 | mv $HOME/rpm/RPMS/i386/sqlite*-$vers*.rpm doc mv $HOME/rpm/SRPMS/sqlite-$vers*.rpm doc # Build the website # #cp $srcdir/../historical/* doc make doc cd doc chmod 644 *.gz |