1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
@node ax_lib_sqlite3
@unnumberedsec ax_lib_sqlite3
@majorheading Synopsis
@smallexample
AX_LIB_SQLITE3([MINIMUM-VERSION])
@end smallexample
@majorheading Description
Test for the SQLite 3 library of a particular version (or newer)
This macro takes only one optional argument, required version of SQLite
3 library. If required version is not passed, 3.0.0 is used in the test
of existance of SQLite 3.
If no intallation prefix to the installed SQLite library is given the
macro searches under /usr, /usr/local, and /opt.
This macro calls:
@smallexample
AC_SUBST(SQLITE3_CFLAGS)
AC_SUBST(SQLITE3_LDFLAGS)
AC_SUBST(SQLITE3_VERSION)
@end smallexample
And sets:
@smallexample
HAVE_SQLITE3
@end smallexample
@majorheading Source Code
Download the
@uref{http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_lib_sqlite3.m4,latest
version of @file{ax_lib_sqlite3.m4}} or browse
@uref{http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=history;f=m4/ax_lib_sqlite3.m4,the
macro's revision history}.
@majorheading License
@w{Copyright @copyright{} 2008 Mateusz Loskot @email{mateusz@@loskot.net}}
Copying and distribution of this file, with or without modification, are
permitted in any medium without royalty provided the copyright notice
and this notice are preserved. This file is offered as-is, without any
warranty.
|