Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cgwalters/sqlite-tarballs-as-git
Import of SQLite tarballs as git
https://github.com/cgwalters/sqlite-tarballs-as-git
Last synced: 26 days ago
JSON representation
Import of SQLite tarballs as git
- Host: GitHub
- URL: https://github.com/cgwalters/sqlite-tarballs-as-git
- Owner: cgwalters
- Created: 2012-01-10T00:52:08.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-01-10T00:52:55.000Z (almost 13 years ago)
- Last Synced: 2023-03-11T22:42:25.865Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 1.75 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
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