opnsense-src/contrib/sqlite3
Franco Fichtner 402e7dde73 src: initial commit based on FreeBSD-10.0
Taken from:	https://github.com/freebsd/freebsd.git
Commit id:	d44ce30d3054a38723f89a161c5e003e64d1aaae
2014-11-09 09:30:14 +01:00
..
aclocal.m4 src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
config.guess src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
config.sub src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
configure src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
configure.ac src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
depcomp src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
INSTALL src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
install-sh src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
ltmain.sh src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
Makefile.am src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
Makefile.in src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
missing src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
README src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
shell.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
sqlite3.1 src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
sqlite3.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
sqlite3.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
sqlite3.pc.in src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
sqlite3ext.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01: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