| OLD | NEW |
| (Empty) |
| 1 | |
| 2 This package contains: | |
| 3 | |
| 4 * the SQLite library amalgamation (single file) source code distribution, | |
| 5 * the shell.c file used to build the sqlite3 shell too, and | |
| 6 * the sqlite3.h and sqlite3ext.h header files required to link programs | |
| 7 and sqlite extensions against the installed libary. | |
| 8 * autoconf/automake installation infrastucture. | |
| 9 | |
| 10 The generic installation instructions for autoconf/automake are found | |
| 11 in the INSTALL file. | |
| 12 | |
| 13 The following SQLite specific boolean options are supported: | |
| 14 | |
| 15 --enable-readline use readline in shell tool [default=yes] | |
| 16 --enable-threadsafe build a thread-safe library [default=yes] | |
| 17 --enable-dynamic-extensions support loadable extensions [default=yes] | |
| 18 | |
| 19 The default value for the CFLAGS variable (options passed to the C | |
| 20 compiler) includes debugging symbols in the build, resulting in larger | |
| 21 binaries than are necessary. Override it on the configure command | |
| 22 line like this: | |
| 23 | |
| 24 $ CFLAGS="-Os" ./configure | |
| 25 | |
| 26 to produce a smaller installation footprint. | |
| 27 | |
| 28 Other SQLite compilation parameters can also be set using CFLAGS. For | |
| 29 example: | |
| 30 | |
| 31 $ CFLAGS="-Os -DSQLITE_OMIT_TRIGGERS" ./configure | |
| 32 | |
| OLD | NEW |