opnsense-src/contrib/sqlite3
2014-11-22 19:18:08 +00:00
..
aclocal.m4 Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
config.guess Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
config.sub Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
configure Update sqlite3 to 3.8.7.2 2014-11-22 19:18:08 +00:00
configure.ac Update sqlite3 to 3.8.7.2 2014-11-22 19:18:08 +00:00
depcomp Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
INSTALL Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
install-sh Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
ltmain.sh Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
Makefile.am
Makefile.in Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
missing Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
README
shell.c Update sqlite3 to 3.8.7.2 2014-11-22 19:18:08 +00:00
sqlite3.1 Update sqlite-3.7.17 -> 3.8.5 2014-08-12 02:09:00 +00:00
sqlite3.c Update sqlite3 to 3.8.7.2 2014-11-22 19:18:08 +00:00
sqlite3.h Update sqlite3 to 3.8.7.2 2014-11-22 19:18:08 +00:00
sqlite3.pc.in
sqlite3ext.h Update sqlite3 to 3.8.7.2 2014-11-22 19:18:08 +00:00

This package contains:

 * the SQLite library amalgamation (single file) source code distribution,
 * the shell.c file used to build the sqlite3 shell too, and
 * the sqlite3.h and sqlite3ext.h header files required to link programs
   and sqlite extensions against the installed libary.
 * autoconf/automake installation infrastucture.

The generic installation instructions for autoconf/automake are found
in the INSTALL file.

The following SQLite specific boolean options are supported:

  --enable-readline           use readline in shell tool   [default=yes]
  --enable-threadsafe         build a thread-safe library  [default=yes]
  --enable-dynamic-extensions support loadable extensions  [default=yes]

The default value for the CFLAGS variable (options passed to the C 
compiler) includes debugging symbols in the build, resulting in larger
binaries than are necessary. Override it on the configure command
line like this:

  $ CFLAGS="-Os" ./configure

to produce a smaller installation footprint.

Other SQLite compilation parameters can also be set using CFLAGS. For
example:

  $ CFLAGS="-Os -DSQLITE_OMIT_TRIGGERS" ./configure