|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| INSTALL | HD | 10-Jan-2016 | 15.4 KiB | 371 | 288 |
| Makefile.am | HD | 10-Jan-2016 | 513 | 20 | 13 |
| Makefile.in | HD | 10-Jan-2016 | 33.8 KiB | 935 | 832 |
| README | HD | 10-Jan-2016 | 1.1 KiB | 33 | 21 |
| aclocal.m4 | HD | 10-Jan-2016 | 335.5 KiB | 9,559 | 8,599 |
| config.guess | HD | 10-Jan-2016 | 43.8 KiB | 1,531 | 1,321 |
| config.sub | HD | 10-Jan-2016 | 34.6 KiB | 1,774 | 1,631 |
| configure | HD | 10-Jan-2016 | 428.9 KiB | 14,847 | 12,401 |
| configure.ac | HD | 10-Jan-2016 | 3.2 KiB | 109 | 95 |
| depcomp | HD | 10-Jan-2016 | 20.4 KiB | 709 | 460 |
| install-sh | HD | 10-Jan-2016 | 13.7 KiB | 528 | 351 |
| ltmain.sh | HD | 10-Jan-2016 | 276.8 KiB | 9,656 | 7,301 |
| missing | HD | 10-Jan-2016 | 10.1 KiB | 332 | 243 |
| shell.c | HD | 10-Jan-2016 | 148.2 KiB | 4,815 | 3,985 |
| sqlite3.1 | HD | 10-Jan-2016 | 8.7 KiB | 287 | 253 |
| sqlite3.c | HD | 10-Jan-2016 | 5.5 MiB | 161,624 | 97,469 |
| sqlite3.h | HD | 10-Jan-2016 | 371.3 KiB | 7,861 | 1,076 |
| sqlite3.pc.in | HD | 10-Jan-2016 | 267 | 14 | 11 |
| sqlite3ext.h | HD | 10-Jan-2016 | 27.6 KiB | 528 | 470 |
README
1
2This 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
10The generic installation instructions for autoconf/automake are found
11in the INSTALL file.
12
13The 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
19The default value for the CFLAGS variable (options passed to the C
20compiler) includes debugging symbols in the build, resulting in larger
21binaries than are necessary. Override it on the configure command
22line like this:
23
24 $ CFLAGS="-Os" ./configure
25
26to produce a smaller installation footprint.
27
28Other SQLite compilation parameters can also be set using CFLAGS. For
29example:
30
31 $ CFLAGS="-Os -DSQLITE_OMIT_TRIGGERS" ./configure
32
33