Index of /freebsd/head/contrib/sqlite3

      Name                    Last modified       Size  Description

[DIR] Parent Directory 24-Oct-2014 04:45 - [TXT] sqlite3ext.h 28-Sep-2014 13:44 25k [TXT] sqlite3.pc.in 18-Jun-2013 04:55 1k [TXT] sqlite3.h 28-Sep-2014 13:44 352k [TXT] sqlite3.c 28-Sep-2014 13:44 5.0M [   ] sqlite3.1 28-Sep-2014 13:44 8k [TXT] shell.c 28-Sep-2014 13:44 121k [   ] missing 28-Sep-2014 13:44 10k [   ] ltmain.sh 28-Sep-2014 13:44 277k [   ] install-sh 28-Sep-2014 13:44 14k [   ] depcomp 28-Sep-2014 13:44 20k [   ] configure.ac 28-Sep-2014 13:44 3k [   ] configure 28-Sep-2014 13:44 429k [   ] config.sub 28-Sep-2014 13:44 35k [   ] config.guess 28-Sep-2014 13:44 44k [   ] aclocal.m4 28-Sep-2014 13:44 336k [TXT] Makefile.in 28-Sep-2014 13:44 30k [   ] Makefile.am 18-Jun-2013 04:55 1k [   ] INSTALL 28-Sep-2014 13:44 15k


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