rpg-x2/sqlite
2011-06-01 14:20:56 +02:00
..
.deps initial commit 2011-06-01 14:20:56 +02:00
.libs initial commit 2011-06-01 14:20:56 +02:00
libs initial commit 2011-06-01 14:20:56 +02:00
aclocal.m4 initial commit 2011-06-01 14:20:56 +02:00
config.guess initial commit 2011-06-01 14:20:56 +02:00
config.log initial commit 2011-06-01 14:20:56 +02:00
config.status initial commit 2011-06-01 14:20:56 +02:00
config.sub initial commit 2011-06-01 14:20:56 +02:00
configure initial commit 2011-06-01 14:20:56 +02:00
configure.ac initial commit 2011-06-01 14:20:56 +02:00
depcomp initial commit 2011-06-01 14:20:56 +02:00
INSTALL initial commit 2011-06-01 14:20:56 +02:00
install-sh initial commit 2011-06-01 14:20:56 +02:00
libsqlite3.la initial commit 2011-06-01 14:20:56 +02:00
libtool initial commit 2011-06-01 14:20:56 +02:00
ltmain.sh initial commit 2011-06-01 14:20:56 +02:00
Makefile initial commit 2011-06-01 14:20:56 +02:00
Makefile.am initial commit 2011-06-01 14:20:56 +02:00
Makefile.in initial commit 2011-06-01 14:20:56 +02:00
missing initial commit 2011-06-01 14:20:56 +02:00
README initial commit 2011-06-01 14:20:56 +02:00
shell.c initial commit 2011-06-01 14:20:56 +02:00
shell.o initial commit 2011-06-01 14:20:56 +02:00
sqlite3 initial commit 2011-06-01 14:20:56 +02:00
sqlite3.1 initial commit 2011-06-01 14:20:56 +02:00
sqlite3.c initial commit 2011-06-01 14:20:56 +02:00
sqlite3.exe initial commit 2011-06-01 14:20:56 +02:00
sqlite3.h initial commit 2011-06-01 14:20:56 +02:00
sqlite3.lo initial commit 2011-06-01 14:20:56 +02:00
sqlite3.o initial commit 2011-06-01 14:20:56 +02:00
sqlite3.pc initial commit 2011-06-01 14:20:56 +02:00
sqlite3.pc.in initial commit 2011-06-01 14:20:56 +02:00
sqlite3ext.h initial commit 2011-06-01 14:20:56 +02: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