Name Date Size #Lines LOC

..--

INSTALLHD10-Jan-201615.4 KiB371288

Makefile.amHD10-Jan-2016513 2013

Makefile.inHD10-Jan-201633.8 KiB935832

READMEHD10-Jan-20161.1 KiB3321

aclocal.m4HD10-Jan-2016335.5 KiB9,5598,599

config.guessHD10-Jan-201643.8 KiB1,5311,321

config.subHD10-Jan-201634.6 KiB1,7741,631

configureHD10-Jan-2016428.9 KiB14,84712,401

configure.acHD10-Jan-20163.2 KiB10995

depcompHD10-Jan-201620.4 KiB709460

install-shHD10-Jan-201613.7 KiB528351

ltmain.shHD10-Jan-2016276.8 KiB9,6567,301

missingHD10-Jan-201610.1 KiB332243

shell.cHD10-Jan-2016148.2 KiB4,8153,985

sqlite3.1HD10-Jan-20168.7 KiB287253

sqlite3.cHD10-Jan-20165.5 MiB161,62497,469

sqlite3.hHD10-Jan-2016371.3 KiB7,8611,076

sqlite3.pc.inHD10-Jan-2016267 1411

sqlite3ext.hHD10-Jan-201627.6 KiB528470

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