diff options
Diffstat (limited to 'libraries/sqlite/unix/sqlite-3.5.1/README')
-rw-r--r-- | libraries/sqlite/unix/sqlite-3.5.1/README | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/libraries/sqlite/unix/sqlite-3.5.1/README b/libraries/sqlite/unix/sqlite-3.5.1/README new file mode 100644 index 0000000..6e4f392 --- /dev/null +++ b/libraries/sqlite/unix/sqlite-3.5.1/README | |||
@@ -0,0 +1,35 @@ | |||
1 | This directory contains source code to | ||
2 | |||
3 | SQLite: An Embeddable SQL Database Engine | ||
4 | |||
5 | To compile the project, first create a directory in which to place | ||
6 | the build products. It is recommended, but not required, that the | ||
7 | build directory be separate from the source directory. Cd into the | ||
8 | build directory and then from the build directory run the configure | ||
9 | script found at the root of the source tree. Then run "make". | ||
10 | |||
11 | For example: | ||
12 | |||
13 | tar xzf sqlite.tar.gz ;# Unpack the source tree into "sqlite" | ||
14 | mkdir bld ;# Build will occur in a sibling directory | ||
15 | cd bld ;# Change to the build directory | ||
16 | ../sqlite/configure ;# Run the configure script | ||
17 | make ;# Run the makefile. | ||
18 | make install ;# (Optional) Install the build products | ||
19 | |||
20 | The configure script uses autoconf 2.50 and libtool. If the configure | ||
21 | script does not work out for you, there is a generic makefile named | ||
22 | "Makefile.linux-gcc" in the top directory of the source tree that you | ||
23 | can copy and edit to suite your needs. Comments on the generic makefile | ||
24 | show what changes are needed. | ||
25 | |||
26 | The linux binaries on the website are created using the generic makefile, | ||
27 | not the configure script. The configure script is unmaintained. (You | ||
28 | can volunteer to take over maintenance of the configure script, if you want!) | ||
29 | The windows binaries on the website are created using MinGW32 configured | ||
30 | as a cross-compiler running under Linux. For details, see the ./publish.sh | ||
31 | script at the top-level of the source tree. | ||
32 | |||
33 | Contacts: | ||
34 | |||
35 | http://www.sqlite.org/ | ||