NameDateSize

..19-Jan-201786

aclocal.m4H A D12-Oct-2015335.5 KiB

compileH A D30-Aug-20167.2 KiB

config.guessH A D12-Oct-201543.8 KiB

config.subH A D12-Oct-201534.6 KiB

configureH A D30-Aug-2016460.4 KiB

configure.acH A D30-Aug-20166.1 KiB

depcompH A D12-Oct-201520.4 KiB

INSTALLH A D12-Oct-201515.4 KiB

install-shH A D12-Oct-201513.7 KiB

ltmain.shH A D12-Oct-2015276.8 KiB

Makefile.amH A D30-Aug-2016718

Makefile.inH A D30-Aug-201636.7 KiB

Makefile.mscH A D30-Aug-201626.2 KiB

missingH A D12-Oct-201510.1 KiB

READMEH A D08-Mar-20151.1 KiB

Replace.csH A D30-Aug-20167.1 KiB

shell.cH A D30-Aug-2016171.6 KiB

sqlite3.1H A D12-Oct-20158.7 KiB

sqlite3.cH A D30-Aug-20166.6 MiB

sqlite3.hH A D30-Aug-2016482.1 KiB

sqlite3.pc.inH A D08-Mar-2015267

sqlite3.rcH A D30-Aug-20161.9 KiB

sqlite3ext.hH A D30-Aug-201629.3 KiB

tea/H20-Dec-201613

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