Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Omit the superfluous -lpthread option in publish.sh. Ticket #2800. (CVS 4569) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4f09f233f0603696aac80f1a4f86bcc8 |
User & Date: | drh 2007-11-27 18:45:32.000 |
Context
2007-11-27
| ||
21:44 | Remove superfluous -lpthread from publish_osx.sh. Ticket #2801. Fix a bug in mkdll.sh. (CVS 4570) (check-in: 8d6e8fd381 user: drh tags: trunk) | |
18:45 | Omit the superfluous -lpthread option in publish.sh. Ticket #2800. (CVS 4569) (check-in: 4f09f233f0 user: drh tags: trunk) | |
18:30 | Add the publish_osx.sh script for building binaries for OSX (CVS 4568) (check-in: 9bd7c31496 user: drh tags: trunk) | |
Changes
Changes to publish.sh.
︙ | ︙ | |||
24 25 26 27 28 29 30 | # make clean make sqlite3.c make fts3amal.c cat fts3amal.c >>sqlite3.c CFLAGS="-Os -DSQLITE_ENABLE_FTS3=1 -DSQLITE_THREADSAFE=0" echo '***** '"COMPILING sqlite3-$VERS.bin..." | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | # make clean make sqlite3.c make fts3amal.c cat fts3amal.c >>sqlite3.c CFLAGS="-Os -DSQLITE_ENABLE_FTS3=1 -DSQLITE_THREADSAFE=0" echo '***** '"COMPILING sqlite3-$VERS.bin..." gcc $CFLAGS -Itsrc sqlite3.c tsrc/shell.c -o sqlite3 -ldl strip sqlite3 mv sqlite3 sqlite3-$VERS.bin gzip sqlite3-$VERS.bin chmod 644 sqlite3-$VERS.bin.gz mv sqlite3-$VERS.bin.gz doc # Build a source archive useful for windows. |
︙ | ︙ |