sqlite/autoconf
drh ac779bcbe9 Adjust the amalgamation-tarball build process so that it includes the
MSVC makefile and the sqlite3.rc resource file.

FossilOrigin-Name: e420f3dc93a0e3364f0773950b7a125f5221a109
2016-01-23 20:09:30 +00:00
..
tea Fix uses of ctype functions (ex: isspace()) on signed characters in test 2015-10-29 13:48:15 +00:00
configure.ac Fix a problem in autoconf/configure.ac causing --enable-readline to fail if libedit was not present. 2016-01-20 15:19:56 +00:00
INSTALL Add the files used to build the amalgamation-autoconf package. 2013-05-27 17:19:58 +00:00
Makefile.am Adjust the amalgamation-tarball build process so that it includes the 2016-01-23 20:09:30 +00:00
README.first Makefile enhancements: (1) Rename autoconf/tea/configure.in to 2015-01-15 15:47:06 +00:00
README.txt Adjust the amalgamation-tarball build process so that it includes the 2016-01-23 20:09:30 +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.
 * a Makefile.msc and sqlite3.rc for Microsoft Visual C++

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

To compile for Windows using Microsoft Visual C++:

  $ nmake /f Makefile.msc FOR_WIN10=1