2 # The build process allows for using a cross-compiler. But the default
3 # action is to target the same platform that we are running on. The
4 # configure script needs to discover the following properties of the
5 # build and target systems:
9 # The is the name of the directory that contains the
10 # "configure" shell script. All source files are
11 # located relative to this directory.
15 # The name of the directory where executables should be
16 # written by the "install" target of the makefile.
20 # Add this prefix to the names of all executables that run
21 # on the target machine. Default: ""
25 # True if shared libraries should be generated.
29 # The name of a command that is used to convert C
30 # source files into executables that run on the build
35 # Switches that the build compiler needs in order to construct
36 # command-line programs.
40 # Libraries that the build compiler needs in order to construct
41 # command-line programs.
45 # The filename extension for executables on the build
46 # platform. "" for Unix and ".exe" for Windows.
50 # Lots of values are read in from the tclConfig.sh script,
51 # if that script is available. This values are used for
52 # constructing and installing the TCL extension.
54 # TARGET_READLINE_LIBS
56 # This is the library directives passed to the target linker
57 # that cause the executable to link against the readline library.
58 # This might be a switch like "-lreadline" or pathnames of library
59 # file like "../../src/libreadline.a".
63 # This variables define the directory that contain header
64 # files for the readline library. If the compiler is able
65 # to find <readline.h> on its own, then this can be blank.
69 # The filename extension for executables on the
70 # target platform. "" for Unix and ".exe" for windows.
72 # This configure.in file is easy to reuse on other projects. Just
73 # change the argument to AC_INIT(). And disable any features that
74 # you don't need (for example BLT) by erasing or commenting out
75 # the corresponding code.
77 AC_INIT(sqlcipher, m4_esyscmd([cat VERSION | tr -d '\n']))
79 dnl Make sure the local VERSION file matches this configure script
80 sqlite_version_sanity_check=`cat $srcdir/VERSION | tr -d '\n'`
81 if test "$PACKAGE_VERSION" != "$sqlite_version_sanity_check" ; then
82 AC_MSG_ERROR([configure script is out of date:
83 configure \$PACKAGE_VERSION = $PACKAGE_VERSION
84 top level VERSION file = $sqlite_version_sanity_check
85 please regen with autoconf])
95 # Enable large file support (if special flags are necessary)
100 # Check for needed/wanted data types
101 AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, intptr_t, uint8_t,
102 uint16_t, uint32_t, uint64_t, uintptr_t])
105 # Check for needed/wanted headers
106 AC_CHECK_HEADERS([sys/types.h stdlib.h stdint.h inttypes.h malloc.h])
109 # Figure out whether or not we have these functions
111 AC_CHECK_FUNCS([fdatasync gmtime_r isnan localtime_r localtime_s malloc_usable_size strchrnul usleep utime pread pread64 pwrite pwrite64])
114 # By default, we use the amalgamation (this may be changed below...)
119 # See whether we can run specific tclsh versions known to work well;
120 # if not, then we fall back to plain tclsh.
121 # TODO: try other versions before falling back?
123 AC_CHECK_PROGS(TCLSH_CMD, [tclsh8.7 tclsh8.6 tclsh8.5 tclsh], none)
124 if test "$TCLSH_CMD" = "none"; then
125 # If we can't find a local tclsh, then building the amalgamation will fail.
126 # We act as though --disable-amalgamation has been used.
127 echo "Warning: can't find tclsh - defaulting to non-amalgamation build."
133 AC_ARG_VAR([TCLLIBDIR], [Where to install tcl plugin])
134 if test "x${TCLLIBDIR+set}" != "xset" ; then
135 TCLLIBDIR='$(libdir)'
136 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD}` ; do
142 TCLLIBDIR="${TCLLIBDIR}/sqlite3"
146 # Set up an appropriate program prefix
148 if test "$program_prefix" = "NONE"; then
151 AC_SUBST(program_prefix)
153 VERSION=[`cat $srcdir/VERSION | sed 's/^\([0-9]*\.*[0-9]*\).*/\1/'`]
154 AC_MSG_NOTICE(Version set to $VERSION)
156 RELEASE=`cat $srcdir/VERSION`
157 AC_MSG_NOTICE(Release set to $RELEASE)
161 # Locate a compiler for the build machine. This compiler should
162 # generate command-line programs that run on the build machine.
164 if test x"$cross_compiling" = xno; then
168 if test "${BUILD_CC+set}" != set; then
169 AC_CHECK_PROGS(BUILD_CC, gcc cc cl)
171 if test "${BUILD_CFLAGS+set}" != set; then
178 # Do we want to support multithreaded use of sqlite
180 AC_ARG_ENABLE(threadsafe,
181 AC_HELP_STRING([--disable-threadsafe],[Disable mutexing]))
182 AC_MSG_CHECKING([whether to support threadsafe operation])
183 if test "$enable_threadsafe" = "no"; then
190 AC_SUBST(SQLITE_THREADSAFE)
192 if test "$SQLITE_THREADSAFE" = "1"; then
193 AC_SEARCH_LIBS(pthread_create, pthread)
194 AC_SEARCH_LIBS(pthread_mutexattr_init, pthread)
198 # Which crypto library do we use
200 AC_ARG_WITH([crypto-lib],
201 AC_HELP_STRING([--with-crypto-lib],[Specify which crypto library to use]),
203 AC_MSG_CHECKING([for crypto library to use])
204 if test "$crypto_lib" = "none"; then
205 AC_MSG_RESULT([none])
207 if test "$crypto_lib" = "commoncrypto"; then
208 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_CC"
209 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_CC"
210 AC_MSG_RESULT([commoncrypto])
212 if test "$crypto_lib" = "libtomcrypt"; then
213 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_LIBTOMCRYPT"
214 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_LIBTOMCRYPT"
215 AC_MSG_RESULT([libtomcrypt])
216 AC_CHECK_LIB([tomcrypt], [register_cipher], ,
217 AC_MSG_ERROR([Library crypto not found. Install libtomcrypt!"]))
219 if test "$crypto_lib" = "nss"; then
220 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_NSS"
221 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_NSS"
222 AC_MSG_RESULT([nss3])
223 AC_CHECK_LIB([nss3], [PK11_Decrypt], ,
224 AC_MSG_ERROR([Library crypto not found. Install nss!"]))
226 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_OPENSSL"
227 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_OPENSSL"
228 AC_MSG_RESULT([openssl])
229 AC_CHECK_LIB([crypto], [HMAC_Init_ex], ,
230 AC_MSG_ERROR([Library crypto not found. Install openssl!"]))
237 # Do we want to allow a connection created in one thread to be used
238 # in another thread. This does not work on many Linux systems (ex: RedHat 9)
239 # due to bugs in the threading implementations. This is thus off by default.
241 AC_ARG_ENABLE(cross-thread-connections,
242 AC_HELP_STRING([--enable-cross-thread-connections],[Allow connection sharing across threads]),,enable_xthreadconnect=no)
243 AC_MSG_CHECKING([whether to allow connections to be shared across threads])
244 if test "$enable_xthreadconnect" = "no"; then
248 XTHREADCONNECT='-DSQLITE_ALLOW_XTHREAD_CONNECT=1'
251 AC_SUBST(XTHREADCONNECT)
254 # Do we want to support release
256 AC_ARG_ENABLE(releasemode,
257 AC_HELP_STRING([--enable-releasemode],[Support libtool link to release mode]),,enable_releasemode=no)
258 AC_MSG_CHECKING([whether to support shared library linked as release mode or not])
259 if test "$enable_releasemode" = "no"; then
263 ALLOWRELEASE="-release `cat $srcdir/VERSION`"
266 AC_SUBST(ALLOWRELEASE)
269 # Do we want temporary databases in memory
271 AC_ARG_ENABLE(tempstore,
272 AC_HELP_STRING([--enable-tempstore],[Use an in-ram database for temporary tables (never,no,yes,always)]),,enable_tempstore=no)
273 AC_MSG_CHECKING([whether to use an in-ram database for temporary tables])
274 case "$enable_tempstore" in
277 AC_MSG_RESULT([never])
289 AC_MSG_RESULT([always])
300 # Lots of things are different if we are compiling for Windows using
301 # the CYGWIN environment. So check for that special case and handle
302 # things accordingly.
304 AC_MSG_CHECKING([if executables have the .exe suffix])
305 if test "$config_BUILD_EXEEXT" = ".exe"; then
309 AC_MSG_RESULT(unknown)
311 if test "$CYGWIN" != "yes"; then
314 if test "$CYGWIN" = "yes"; then
319 if test x"$cross_compiling" = xno; then
320 TARGET_EXEEXT=$BUILD_EXEEXT
322 TARGET_EXEEXT=$config_TARGET_EXEEXT
324 if test "$TARGET_EXEEXT" = ".exe"; then
327 CFLAGS="$CFLAGS -DSQLITE_OS_WIN=1"
331 CFLAGS="$CFLAGS -DSQLITE_OS_UNIX=1"
334 AC_SUBST(BUILD_EXEEXT)
335 AC_SUBST(SQLITE_OS_UNIX)
336 AC_SUBST(SQLITE_OS_WIN)
337 AC_SUBST(TARGET_EXEEXT)
340 # Figure out all the parameters needed to compile against Tcl.
342 # This code is derived from the SC_PATH_TCLCONFIG and SC_LOAD_TCLCONFIG
343 # macros in the in the tcl.m4 file of the standard TCL distribution.
344 # Those macros could not be used directly since we have to make some
345 # minor changes to accomodate systems that do not have TCL installed.
347 AC_ARG_ENABLE(tcl, AC_HELP_STRING([--disable-tcl],[do not build TCL extension]),
348 [use_tcl=$enableval],[use_tcl=yes])
349 if test "${use_tcl}" = "yes" ; then
350 AC_ARG_WITH(tcl, AC_HELP_STRING([--with-tcl=DIR],[directory containing tcl configuration (tclConfig.sh)]), with_tclconfig=${withval})
351 AC_MSG_CHECKING([for Tcl configuration])
352 AC_CACHE_VAL(ac_cv_c_tclconfig,[
353 # First check to see if --with-tcl was specified.
354 if test x"${with_tclconfig}" != x ; then
355 if test -f "${with_tclconfig}/tclConfig.sh" ; then
356 ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
358 AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
362 # Start autosearch by asking tclsh
363 if test x"${ac_cv_c_tclconfig}" = x ; then
364 if test x"$cross_compiling" = xno; then
365 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD}`
367 if test -f "$i/tclConfig.sh" ; then
368 ac_cv_c_tclconfig="$i"
375 # On ubuntu 14.10, $auto_path on tclsh is not quite correct.
376 # So try again after applying corrections.
377 if test x"${ac_cv_c_tclconfig}" = x ; then
378 if test x"$cross_compiling" = xno; then
379 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD} | sed 's,/tcltk/tcl,/tcl,g'`
381 if test -f "$i/tclConfig.sh" ; then
382 ac_cv_c_tclconfig="$i"
389 # Recent versions of Xcode on Macs hid the tclConfig.sh file
390 # in a strange place.
391 if test x"${ac_cv_c_tclconfig}" = x ; then
392 if test x"$cross_compiling" = xno; then
393 for i in /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX*.sdk/usr/lib
395 if test -f "$i/tclConfig.sh" ; then
396 ac_cv_c_tclconfig="$i"
403 # then check for a private Tcl installation
404 if test x"${ac_cv_c_tclconfig}" = x ; then
407 `ls -dr ../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
408 `ls -dr ../tcl[[8-9]].[[0-9]] 2>/dev/null` \
409 `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
411 `ls -dr ../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
412 `ls -dr ../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
413 `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
415 `ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
416 `ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
417 `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null`
419 if test -f "$i/unix/tclConfig.sh" ; then
420 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
426 # check in a few common install locations
427 if test x"${ac_cv_c_tclconfig}" = x ; then
429 `ls -d ${libdir} 2>/dev/null` \
430 `ls -d /usr/local/lib 2>/dev/null` \
431 `ls -d /usr/contrib/lib 2>/dev/null` \
432 `ls -d /usr/lib 2>/dev/null`
434 if test -f "$i/tclConfig.sh" ; then
435 ac_cv_c_tclconfig=`(cd $i; pwd)`
441 # check in a few other private locations
442 if test x"${ac_cv_c_tclconfig}" = x ; then
445 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
446 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \
447 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null`
449 if test -f "$i/unix/tclConfig.sh" ; then
450 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
457 if test x"${ac_cv_c_tclconfig}" = x ; then
459 AC_MSG_WARN(Can't find Tcl configuration definitions)
460 AC_MSG_WARN(*** Without Tcl the regression tests cannot be executed ***)
461 AC_MSG_WARN(*** Consider using --with-tcl=... to define location of Tcl ***)
463 TCL_BIN_DIR=${ac_cv_c_tclconfig}
464 AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)
466 AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh])
467 if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then
468 AC_MSG_RESULT([loading])
469 . $TCL_BIN_DIR/tclConfig.sh
471 AC_MSG_RESULT([file not found])
475 # If the TCL_BIN_DIR is the build directory (not the install directory),
476 # then set the common variable name to the value of the build variables.
477 # For example, the variable TCL_LIB_SPEC will be set to the value
478 # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC
479 # instead of TCL_BUILD_LIB_SPEC since it will work with both an
480 # installed and uninstalled version of Tcl.
483 if test -f $TCL_BIN_DIR/Makefile ; then
484 TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC}
485 TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC}
486 TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH}
490 # eval is required to do the TCL_DBGX substitution
493 eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\""
494 eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\""
495 eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\""
497 eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\""
498 eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\""
499 eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\""
501 AC_SUBST(TCL_VERSION)
502 AC_SUBST(TCL_BIN_DIR)
503 AC_SUBST(TCL_SRC_DIR)
504 AC_SUBST(TCL_INCLUDE_SPEC)
506 AC_SUBST(TCL_LIB_FILE)
507 AC_SUBST(TCL_LIB_FLAG)
508 AC_SUBST(TCL_LIB_SPEC)
510 AC_SUBST(TCL_STUB_LIB_FILE)
511 AC_SUBST(TCL_STUB_LIB_FLAG)
512 AC_SUBST(TCL_STUB_LIB_SPEC)
513 AC_SUBST(TCL_SHLIB_SUFFIX)
516 if test "${use_tcl}" = "no" ; then
524 # Figure out what C libraries are required to compile programs
525 # that use "readline()" library.
527 TARGET_READLINE_LIBS=""
528 TARGET_READLINE_INC=""
529 TARGET_HAVE_READLINE=0
530 TARGET_HAVE_EDITLINE=0
531 AC_ARG_ENABLE([editline],
532 [AC_HELP_STRING([--enable-editline],[enable BSD editline support])],
533 [with_editline=$enableval],
534 [with_editline=auto])
535 AC_ARG_ENABLE([readline],
536 [AC_HELP_STRING([--disable-readline],[disable readline support])],
537 [with_readline=$enableval],
538 [with_readline=auto])
540 if test x"$with_editline" != xno; then
543 TARGET_HAVE_EDITLINE=1
544 AC_SEARCH_LIBS(readline,edit,[with_readline=no],[TARGET_HAVE_EDITLINE=0])
545 TARGET_READLINE_LIBS=$LIBS
548 if test x"$with_readline" != xno; then
551 AC_ARG_WITH([readline-lib],
552 [AC_HELP_STRING([--with-readline-lib],[specify readline library])],
553 [with_readline_lib=$withval],
554 [with_readline_lib="auto"])
555 if test "x$with_readline_lib" = xauto; then
558 AC_SEARCH_LIBS(tgetent, [readline ncurses curses termcap], [term_LIBS="$LIBS"], [term_LIBS=""])
559 AC_CHECK_LIB([readline], [readline], [TARGET_READLINE_LIBS="-lreadline"], [found="no"])
560 TARGET_READLINE_LIBS="$TARGET_READLINE_LIBS $term_LIBS"
563 TARGET_READLINE_LIBS="$with_readline_lib"
566 AC_ARG_WITH([readline-inc],
567 [AC_HELP_STRING([--with-readline-inc],[specify readline include paths])],
568 [with_readline_inc=$withval],
569 [with_readline_inc="auto"])
570 if test "x$with_readline_inc" = xauto; then
571 AC_CHECK_HEADER(readline.h, [found="yes"], [
573 if test "$cross_compiling" != yes; then
574 for dir in /usr /usr/local /usr/local/readline /usr/contrib /mingw; do
575 for subdir in include include/readline; do
576 AC_CHECK_FILE($dir/$subdir/readline.h, found=yes)
577 if test "$found" = "yes"; then
578 TARGET_READLINE_INC="-I$dir/$subdir"
582 test "$found" = "yes" && break
587 TARGET_READLINE_INC="$with_readline_inc"
590 if test x"$found" = xno; then
591 TARGET_READLINE_LIBS=""
592 TARGET_READLINE_INC=""
593 TARGET_HAVE_READLINE=0
595 TARGET_HAVE_READLINE=1
599 AC_SUBST(TARGET_READLINE_LIBS)
600 AC_SUBST(TARGET_READLINE_INC)
601 AC_SUBST(TARGET_HAVE_READLINE)
602 AC_SUBST(TARGET_HAVE_EDITLINE)
605 # Figure out what C libraries are required to compile programs
606 # that use "fdatasync()" function.
608 AC_SEARCH_LIBS(fdatasync, [rt])
611 # check for debug enabled
612 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],[enable debugging & verbose explain]))
613 AC_MSG_CHECKING([build type])
614 if test "${enable_debug}" = "yes" ; then
615 TARGET_DEBUG="-DSQLITE_DEBUG=1 -DSQLITE_ENABLE_SELECTTRACE -DSQLITE_ENABLE_WHERETRACE -O0"
616 AC_MSG_RESULT([debug])
618 TARGET_DEBUG="-DNDEBUG"
619 AC_MSG_RESULT([release])
621 AC_SUBST(TARGET_DEBUG)
624 # See whether we should use the amalgamation to build
625 AC_ARG_ENABLE(amalgamation, AC_HELP_STRING([--disable-amalgamation],
626 [Disable the amalgamation and instead build all files separately]))
627 if test "${enable_amalgamation}" = "no" ; then
630 AC_SUBST(USE_AMALGAMATION)
633 # By default, amalgamation sqlite3.c will have #line directives.
634 # This is a build option not shown by ./configure --help
635 # To control it, use configure option: amalgamation_line_macros=?
636 # where ? is no to suppress #line directives or yes to create them.
637 AMALGAMATION_LINE_MACROS=--linemacros=1
638 AC_ARG_VAR(amalgamation_line_macros,)
639 AC_SUBST(AMALGAMATION_LINE_MACROS)
640 if test "${amalgamation_line_macros+set}" = set; then :
641 enableval=$amalgamation_line_macros;
643 if test "${amalgamation_line_macros}" = "yes" ; then
644 AMALGAMATION_LINE_MACROS=--linemacros=1
646 if test "${amalgamation_line_macros}" = "no" ; then
647 AMALGAMATION_LINE_MACROS=--linemacros=0
651 # Look for zlib. Only needed by extensions and by the sqlite3.exe shell
652 AC_CHECK_HEADERS(zlib.h)
653 AC_SEARCH_LIBS(deflate, z, [HAVE_ZLIB="-DSQLITE_HAVE_ZLIB=1"], [HAVE_ZLIB=""])
657 # See whether we should allow loadable extensions
658 AC_ARG_ENABLE(load-extension, AC_HELP_STRING([--disable-load-extension],
659 [Disable loading of external extensions]),,[enable_load_extension=yes])
660 if test "${enable_load_extension}" = "yes" ; then
662 AC_SEARCH_LIBS(dlopen, dl)
664 OPT_FEATURE_FLAGS="-DSQLITE_OMIT_LOAD_EXTENSION=1"
668 # Do we want to support math functions
671 AC_HELP_STRING([--disable-math],[Disable math functions]))
672 AC_MSG_CHECKING([whether to support math functions])
673 if test "$enable_math" = "no"; then
677 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MATH_FUNCTIONS"
678 AC_SEARCH_LIBS(ceil, m)
683 # The --enable-all argument is short-hand to enable
684 # multiple extensions.
685 AC_ARG_ENABLE(all, AC_HELP_STRING([--enable-all],
686 [Enable FTS4, FTS5, Geopoly, JSON, RTree, Sessions]))
689 # Do we want to support memsys3 and/or memsys5
691 AC_ARG_ENABLE(memsys5,
692 AC_HELP_STRING([--enable-memsys5],[Enable MEMSYS5]))
693 AC_MSG_CHECKING([whether to support MEMSYS5])
694 if test "${enable_memsys5}" = "yes"; then
695 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5"
700 AC_ARG_ENABLE(memsys3,
701 AC_HELP_STRING([--enable-memsys3],[Enable MEMSYS3]))
702 AC_MSG_CHECKING([whether to support MEMSYS3])
703 if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then
704 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3"
711 # See whether we should enable Full Text Search extensions
712 AC_ARG_ENABLE(fts3, AC_HELP_STRING([--enable-fts3],
713 [Enable the FTS3 extension]))
714 AC_MSG_CHECKING([whether to support FTS3])
715 if test "${enable_fts3}" = "yes" ; then
716 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS3"
721 AC_ARG_ENABLE(fts4, AC_HELP_STRING([--enable-fts4],
722 [Enable the FTS4 extension]))
723 AC_MSG_CHECKING([whether to support FTS4])
724 if test "${enable_fts4}" = "yes" -o "${enable_all}" = "yes" ; then
726 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS4"
727 AC_SEARCH_LIBS([log],[m])
731 AC_ARG_ENABLE(fts5, AC_HELP_STRING([--enable-fts5],
732 [Enable the FTS5 extension]))
733 AC_MSG_CHECKING([whether to support FTS5])
734 if test "${enable_fts5}" = "yes" -o "${enable_all}" = "yes" ; then
736 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS5"
737 AC_SEARCH_LIBS([log],[m])
743 # See whether we should enable JSON1
744 AC_ARG_ENABLE(json1, AC_HELP_STRING([--enable-json1],[Enable the JSON1 extension]))
745 AC_MSG_CHECKING([whether to support JSON])
746 if test "${enable_json1}" = "yes" -o "${enable_all}" = "yes" ; then
747 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_JSON1"
754 # See whether we should enable the LIMIT clause on UPDATE and DELETE
756 AC_ARG_ENABLE(update-limit, AC_HELP_STRING([--enable-update-limit],
757 [Enable the UPDATE/DELETE LIMIT clause]))
758 AC_MSG_CHECKING([whether to support LIMIT on UPDATE and DELETE statements])
759 if test "${enable_update_limit}" = "yes" ; then
760 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT"
767 # See whether we should enable GEOPOLY
768 AC_ARG_ENABLE(geopoly, AC_HELP_STRING([--enable-geopoly],
769 [Enable the GEOPOLY extension]),
770 [enable_geopoly=yes],[enable_geopoly=no])
771 AC_MSG_CHECKING([whether to support GEOPOLY])
772 if test "${enable_geopoly}" = "yes" -o "${enable_all}" = "yes" ; then
773 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_GEOPOLY"
781 # See whether we should enable RTREE
782 AC_ARG_ENABLE(rtree, AC_HELP_STRING([--enable-rtree],
783 [Enable the RTREE extension]))
784 AC_MSG_CHECKING([whether to support RTREE])
785 if test "${enable_rtree}" = "yes" ; then
786 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_RTREE"
793 # See whether we should enable the SESSION extension
794 AC_ARG_ENABLE(session, AC_HELP_STRING([--enable-session],
795 [Enable the SESSION extension]))
796 AC_MSG_CHECKING([whether to support SESSION])
797 if test "${enable_session}" = "yes" -o "${enable_all}" = "yes" ; then
798 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_SESSION"
799 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_PREUPDATE_HOOK"
806 # attempt to duplicate any OMITS and ENABLES into the ${OPT_FEATURE_FLAGS} parameter
807 for option in $CFLAGS $CPPFLAGS
810 -DSQLITE_OMIT*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
811 -DSQLITE_ENABLE*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
814 AC_SUBST(OPT_FEATURE_FLAGS)
817 # attempt to remove any OMITS and ENABLES from the $(CFLAGS) parameter
819 for option in $CFLAGS
824 *) ac_temp_CFLAGS="$ac_temp_CFLAGS $option";;
827 CFLAGS=$ac_temp_CFLAGS
830 # attempt to remove any OMITS and ENABLES from the $(CPPFLAGS) parameter
832 for option in $CPPFLAGS
837 *) ac_temp_CPPFLAGS="$ac_temp_CPPFLAGS $option";;
840 CPPFLAGS=$ac_temp_CPPFLAGS
843 # attempt to remove any OMITS and ENABLES from the $(BUILD_CFLAGS) parameter
844 ac_temp_BUILD_CFLAGS=""
845 for option in $BUILD_CFLAGS
850 *) ac_temp_BUILD_CFLAGS="$ac_temp_BUILD_CFLAGS $option";;
853 BUILD_CFLAGS=$ac_temp_BUILD_CFLAGS
857 # See whether we should use GCOV
858 AC_ARG_ENABLE(gcov, AC_HELP_STRING([--enable-gcov],
859 [Enable coverage testing using gcov]))
860 if test "${use_gcov}" = "yes" ; then
868 # Enable/disabled amalagamation line macros
870 AMALGAMATION_LINE_MACROS=--linemacros=0
871 if test "${amalgamation_line_macros}" = "yes" ; then
872 AMALGAMATION_LINE_MACROS=--linemacros=1
874 if test "${amalgamation_line_macros}" = "no" ; then
875 AMALGAMATION_LINE_MACROS=--linemacros=0
877 AC_SUBST(AMALGAMATION_LINE_MACROS)
880 # Output the config header
881 AC_CONFIG_HEADERS(config.h)
884 # Generate the output files.
886 AC_SUBST(BUILD_CFLAGS)