• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..29-Mar-2016141

aclocal.m4H A D27-Nov-2015344 KiB

compileH A D27-Nov-20157.2 KiB

config.guessH A D27-Nov-201544.7 KiB

config.subH A D27-Nov-201534.8 KiB

configureH A D27-Nov-2015434.1 KiB

configure.acH A D27-Nov-20153.2 KiB

depcompH A D27-Nov-201523 KiB

INSTALLH A D27-Nov-20159.3 KiB

install-shH A D27-Nov-201513.7 KiB

ltmain.shH A D27-Nov-2015276.8 KiB

Makefile.amH A D27-Nov-2015563

Makefile.inH A D27-Nov-201532.5 KiB

missingH A D27-Nov-20156.7 KiB

READMEH A D27-Nov-20151.1 KiB

shell.cH A D13-Aug-201380.4 KiB

sqlite3.1H A D27-Nov-20156.6 KiB

sqlite3.cH A D13-Aug-20134 MiB

sqlite3.hH A D13-Aug-2013276.3 KiB

sqlite3.pc.inH A D27-Nov-2015267

sqlite3ext.hH A D13-Aug-201320.2 KiB

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