Name Date Size #Lines LOC

..--

INSTALLHD26-Jul-20159.3 KiB237179

Makefile.amHD26-Jul-2015556 2013

Makefile.inHD26-Jul-201524.1 KiB733651

READMEHD26-Jul-20151.1 KiB3321

aclocal.m4HD26-Jul-2015254.6 KiB7,2286,485

config.guessHD26-Jul-201542.4 KiB1,4641,253

config.subHD26-Jul-201531 KiB1,5801,438

configureHD26-Jul-2015681.1 KiB21,22416,774

configure.acHD26-Jul-20153.2 KiB10995

depcompHD26-Jul-201515.6 KiB531330

install-shHD26-Jul-20159 KiB324189

ltmain.shHD26-Jul-2015194.3 KiB6,9315,472

missingHD26-Jul-201510.8 KiB361268

shell.cHD26-Jul-201597.1 KiB3,2342,651

sqlite3.1HD26-Jul-20156.6 KiB230195

sqlite3.cHD26-Jul-20154.7 MiB140,45784,126

sqlite3.hHD26-Jul-2015340.4 KiB7,246953

sqlite3.pc.inHD26-Jul-2015267 1411

sqlite3ext.hHD26-Jul-201525.4 KiB485431

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