Go to file
drh 26d0e2a6da Fix a quoting problem in the configure script. (CVS 2536)
FossilOrigin-Name: b34647a2ebec6f915f9914034e9370459873215e
2005-07-06 13:51:27 +00:00
art
doc
src Fix typos in comments. No changes to code. (CVS 2535) 2005-07-01 11:38:44 +00:00
test Tcl interface uses Tcl_Objs to implement user-defined functions, thus allowing 2005-06-26 17:55:33 +00:00
tool Remove the blob(), text() and numeric() functions added in (2524) and 2005-06-25 18:42:14 +00:00
www Update SQL syntax documentation to describe the new CAST expressions. (CVS 2531) 2005-06-26 20:00:46 +00:00
aclocal.m4
config.guess
config.sub
configure Fix a quoting problem in the configure script. (CVS 2536) 2005-07-06 13:51:27 +00:00
configure.ac Fix a quoting problem in the configure script. (CVS 2536) 2005-07-06 13:51:27 +00:00
install-sh
ltmain.sh
main.mk Fix to the "make doc" makefile target. Ticket #1289. (CVS 2518) 2005-06-15 18:07:39 +00:00
Makefile.in Fix the THREADSAFE macro in Makefile.in. We really need to rework the 2005-06-16 18:47:38 +00:00
Makefile.linux-gcc
manifest Fix a quoting problem in the configure script. (CVS 2536) 2005-07-06 13:51:27 +00:00
manifest.uuid Fix a quoting problem in the configure script. (CVS 2536) 2005-07-06 13:51:27 +00:00
mkdll.sh
mkopcodec.awk
mkopcodeh.awk Change 'stack' to the more descriptive 'no-push' in vdbe.c. (CVS 2429) 2005-03-29 13:07:00 +00:00
mkso.sh
publish.sh
README README file updated to suggest running "make install". Ticket #1168. (CVS 2409) 2005-03-21 00:47:18 +00:00
spec.template
sqlite3.1
sqlite3.def Update the EXPORT definitions list to include the latest additions to the API. (CVS 2510) 2005-06-12 23:16:20 +00:00
sqlite3.pc.in
sqlite.pc.in
tclinstaller.tcl
VERSION Updates in preparation for the release of version 3.2.2. (CVS 2509) 2005-06-12 22:23:40 +00:00

This directory contains source code to 

    SQLite: An Embeddable SQL Database Engine

To compile the project, first create a directory in which to place
the build products.  It is recommended, but not required, that the
build directory be separate from the source directory.  Cd into the
build directory and then from the build directory run the configure
script found at the root of the source tree.  Then run "make".

For example:

    tar xzf sqlite.tar.gz    ;#  Unpack the source tree into "sqlite"
    mkdir bld                ;#  Build will occur in a sibling directory
    cd bld                   ;#  Change to the build directory
    ../sqlite/configure      ;#  Run the configure script
    make                     ;#  Run the makefile.
    make install             ;#  (Optional) Install the build products

The configure script uses autoconf 2.50 and libtool.  If the configure
script does not work out for you, there is a generic makefile named
"Makefile.linux-gcc" in the top directory of the source tree that you
can copy and edit to suite your needs.  Comments on the generic makefile
show what changes are needed.

The linux binaries on the website are created using the generic makefile,
not the configure script.  The configure script is unmaintained.  (You
can volunteer to take over maintenance of the configure script, if you want!)
The windows binaries on the website are created using MinGW32 configured
as a cross-compiler running under Linux.  For details, see the ./publish.sh
script at the top-level of the source tree.

Contacts:

   http://www.sqlite.org/