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 # Handle --with-wasi-sdk=DIR
163 # This must be early because it changes the toolchain.
165 AC_ARG_WITH(wasi-sdk,
166 AS_HELP_STRING([--with-wasi-sdk=DIR],
167 [directory containing the WASI SDK. Triggers cross-compile to WASM.]), with_wasisdk=${withval})
168 AC_MSG_CHECKING([for WASI SDK directory])
169 AC_CACHE_VAL(ac_cv_c_wasi_sdk,[
170 # First check to see if --with-tcl was specified.
171 if test x"${with_wasi_sdk}" != x ; then
172 if ! test -d "${with_wasi_sdk}" ; then
173 AC_MSG_ERROR([${with_wasi_sdk} directory doesn't exist])
175 AC_MSG_RESULT([${with_wasi_sdk}: using wasi-sdk clang, disabling: tcl, CLI shell, DLL])
181 if test "${use_wasi_sdk}" = "no" ; then
186 # Changing --host and --target have no effect here except to possibly
187 # cause confusion. autoconf has finished processing them by this
190 # host_alias=wasm32-wasi
193 # Merely changing CC and LD to the wasi-sdk's is enough to get
194 # sqlite3.o building in WASM format.
195 CC="${with_wasi_sdk}/bin/clang"
196 LD="${with_wasi_sdk}/bin/wasm-ld"
197 RANLIB="${with_wasi_sdk}/bin/llvm-ranlib"
202 # libtool is apparently hard-coded to use gcc for linking DLLs, so
203 # we disable the DLL build...
207 AC_SUBST(HAVE_WASI_SDK)
211 # Locate a compiler for the build machine. This compiler should
212 # generate command-line programs that run on the build machine.
214 if test x"$cross_compiling" = xno; then
218 if test "${BUILD_CC+set}" != set; then
219 AC_CHECK_PROGS(BUILD_CC, gcc cc cl)
221 if test "${BUILD_CFLAGS+set}" != set; then
228 # Do we want to support multithreaded use of sqlite
230 AC_ARG_ENABLE(threadsafe,
231 AS_HELP_STRING([--disable-threadsafe],[Disable mutexing]))
232 AC_MSG_CHECKING([whether to support threadsafe operation])
233 if test "$enable_threadsafe" = "no"; then
240 AC_SUBST(SQLITE_THREADSAFE)
242 if test "$SQLITE_THREADSAFE" = "1"; then
243 AC_SEARCH_LIBS(pthread_create, pthread)
244 AC_SEARCH_LIBS(pthread_mutexattr_init, pthread)
248 # Which crypto library do we use
250 AC_ARG_WITH([crypto-lib],
251 AC_HELP_STRING([--with-crypto-lib],[Specify which crypto library to use]),
253 AC_MSG_CHECKING([for crypto library to use])
254 if test "$crypto_lib" = "none"; then
255 AC_MSG_RESULT([none])
257 if test "$crypto_lib" = "commoncrypto"; then
258 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_CC"
259 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_CC"
260 AC_MSG_RESULT([commoncrypto])
262 if test "$crypto_lib" = "libtomcrypt"; then
263 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_LIBTOMCRYPT"
264 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_LIBTOMCRYPT"
265 AC_MSG_RESULT([libtomcrypt])
266 AC_CHECK_LIB([tomcrypt], [register_cipher], ,
267 AC_MSG_ERROR([Library crypto not found. Install libtomcrypt!"]))
269 if test "$crypto_lib" = "nss"; then
270 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_NSS"
271 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_NSS"
272 AC_MSG_RESULT([nss3])
273 AC_CHECK_LIB([nss3], [PK11_Decrypt], ,
274 AC_MSG_ERROR([Library crypto not found. Install nss!"]))
276 CFLAGS="$CFLAGS -DSQLCIPHER_CRYPTO_OPENSSL"
277 BUILD_CFLAGS="$BUILD_CFLAGS -DSQLCIPHER_CRYPTO_OPENSSL"
278 AC_MSG_RESULT([openssl])
279 AC_CHECK_LIB([crypto], [HMAC_Init_ex], ,
280 AC_MSG_ERROR([Library crypto not found. Install openssl!"]))
287 # Do we want to allow a connection created in one thread to be used
288 # in another thread. This does not work on many Linux systems (ex: RedHat 9)
289 # due to bugs in the threading implementations. This is thus off by default.
291 AC_ARG_ENABLE(cross-thread-connections,
292 AC_HELP_STRING([--enable-cross-thread-connections],[Allow connection sharing across threads]),,enable_xthreadconnect=no)
293 AC_MSG_CHECKING([whether to allow connections to be shared across threads])
294 if test "$enable_xthreadconnect" = "no"; then
298 XTHREADCONNECT='-DSQLITE_ALLOW_XTHREAD_CONNECT=1'
301 AC_SUBST(XTHREADCONNECT)
304 # Do we want to support release
306 AC_ARG_ENABLE(releasemode,
307 AS_HELP_STRING([--enable-releasemode],[Support libtool link to release mode]),,enable_releasemode=no)
308 AC_MSG_CHECKING([whether to support shared library linked as release mode or not])
309 if test "$enable_releasemode" = "no"; then
313 ALLOWRELEASE="-release `cat $srcdir/VERSION`"
316 AC_SUBST(ALLOWRELEASE)
319 # Do we want temporary databases in memory
321 AC_ARG_ENABLE(tempstore,
322 AS_HELP_STRING([--enable-tempstore],[Use an in-ram database for temporary tables (never,no,yes,always)]),,enable_tempstore=no)
323 AC_MSG_CHECKING([whether to use an in-ram database for temporary tables])
324 case "$enable_tempstore" in
327 AC_MSG_RESULT([never])
339 AC_MSG_RESULT([always])
350 # Lots of things are different if we are compiling for Windows using
351 # the CYGWIN environment. So check for that special case and handle
352 # things accordingly.
354 AC_MSG_CHECKING([if executables have the .exe suffix])
355 if test "$config_BUILD_EXEEXT" = ".exe"; then
359 AC_MSG_RESULT(unknown)
361 if test "$CYGWIN" != "yes"; then
363 [AC_CYGWIN is obsolete: use AC_CANONICAL_HOST and check if $host_os
364 matches *cygwin*])dnl
367 *cygwin* ) CYGWIN=yes;;
372 if test "$CYGWIN" = "yes"; then
377 if test x"$cross_compiling" = xno; then
378 TARGET_EXEEXT=$BUILD_EXEEXT
380 TARGET_EXEEXT=$config_TARGET_EXEEXT
382 if test "$TARGET_EXEEXT" = ".exe"; then
385 CFLAGS="$CFLAGS -DSQLITE_OS_WIN=1"
389 CFLAGS="$CFLAGS -DSQLITE_OS_UNIX=1"
392 AC_SUBST(BUILD_EXEEXT)
393 AC_SUBST(SQLITE_OS_UNIX)
394 AC_SUBST(SQLITE_OS_WIN)
395 AC_SUBST(TARGET_EXEEXT)
398 # Figure out all the parameters needed to compile against Tcl.
400 # This code is derived from the SC_PATH_TCLCONFIG and SC_LOAD_TCLCONFIG
401 # macros in the in the tcl.m4 file of the standard TCL distribution.
402 # Those macros could not be used directly since we have to make some
403 # minor changes to accomodate systems that do not have TCL installed.
405 AC_ARG_ENABLE(tcl, AS_HELP_STRING([--disable-tcl],[do not build TCL extension]),
406 [use_tcl=$enableval],[use_tcl=yes])
407 if test "${use_tcl}" = "yes" ; then
408 AC_ARG_WITH(tcl, AS_HELP_STRING([--with-tcl=DIR],[directory containing tcl configuration (tclConfig.sh)]), with_tclconfig=${withval})
409 AC_MSG_CHECKING([for Tcl configuration])
410 AC_CACHE_VAL(ac_cv_c_tclconfig,[
411 # First check to see if --with-tcl was specified.
412 if test x"${with_tclconfig}" != x ; then
413 if test -f "${with_tclconfig}/tclConfig.sh" ; then
414 ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
416 AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
420 # Start autosearch by asking tclsh
421 if test x"${ac_cv_c_tclconfig}" = x ; then
422 if test x"$cross_compiling" = xno; then
423 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD}`
425 if test -f "$i/tclConfig.sh" ; then
426 ac_cv_c_tclconfig="$i"
433 # On ubuntu 14.10, $auto_path on tclsh is not quite correct.
434 # So try again after applying corrections.
435 if test x"${ac_cv_c_tclconfig}" = x ; then
436 if test x"$cross_compiling" = xno; then
437 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD} | sed 's,/tcltk/tcl,/tcl,g'`
439 if test -f "$i/tclConfig.sh" ; then
440 ac_cv_c_tclconfig="$i"
447 # Recent versions of Xcode on Macs hid the tclConfig.sh file
448 # in a strange place.
449 if test x"${ac_cv_c_tclconfig}" = x ; then
450 if test x"$cross_compiling" = xno; then
451 for i in /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX*.sdk/usr/lib
453 if test -f "$i/tclConfig.sh" ; then
454 ac_cv_c_tclconfig="$i"
461 # then check for a private Tcl installation
462 if test x"${ac_cv_c_tclconfig}" = x ; then
465 `ls -dr ../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
466 `ls -dr ../tcl[[8-9]].[[0-9]] 2>/dev/null` \
467 `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
469 `ls -dr ../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
470 `ls -dr ../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
471 `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
473 `ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
474 `ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
475 `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null`
477 if test -f "$i/unix/tclConfig.sh" ; then
478 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
484 # check in a few common install locations
485 if test x"${ac_cv_c_tclconfig}" = x ; then
487 `ls -d ${libdir} 2>/dev/null` \
488 `ls -d /usr/local/lib 2>/dev/null` \
489 `ls -d /usr/contrib/lib 2>/dev/null` \
490 `ls -d /usr/lib 2>/dev/null`
492 if test -f "$i/tclConfig.sh" ; then
493 ac_cv_c_tclconfig=`(cd $i; pwd)`
499 # check in a few other private locations
500 if test x"${ac_cv_c_tclconfig}" = x ; then
503 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
504 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \
505 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null`
507 if test -f "$i/unix/tclConfig.sh" ; then
508 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
515 if test x"${ac_cv_c_tclconfig}" = x ; then
517 AC_MSG_WARN(Can't find Tcl configuration definitions)
518 AC_MSG_WARN(*** Without Tcl the regression tests cannot be executed ***)
519 AC_MSG_WARN(*** Consider using --with-tcl=... to define location of Tcl ***)
521 TCL_BIN_DIR=${ac_cv_c_tclconfig}
522 AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)
524 AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh])
525 if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then
526 AC_MSG_RESULT([loading])
527 . $TCL_BIN_DIR/tclConfig.sh
529 AC_MSG_RESULT([file not found])
533 # If the TCL_BIN_DIR is the build directory (not the install directory),
534 # then set the common variable name to the value of the build variables.
535 # For example, the variable TCL_LIB_SPEC will be set to the value
536 # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC
537 # instead of TCL_BUILD_LIB_SPEC since it will work with both an
538 # installed and uninstalled version of Tcl.
541 if test -f $TCL_BIN_DIR/Makefile ; then
542 TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC}
543 TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC}
544 TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH}
548 # eval is required to do the TCL_DBGX substitution
551 eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\""
552 eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\""
553 eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\""
555 eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\""
556 eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\""
557 eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\""
559 AC_SUBST(TCL_VERSION)
560 AC_SUBST(TCL_BIN_DIR)
561 AC_SUBST(TCL_SRC_DIR)
562 AC_SUBST(TCL_INCLUDE_SPEC)
564 AC_SUBST(TCL_LIB_FILE)
565 AC_SUBST(TCL_LIB_FLAG)
566 AC_SUBST(TCL_LIB_SPEC)
568 AC_SUBST(TCL_STUB_LIB_FILE)
569 AC_SUBST(TCL_STUB_LIB_FLAG)
570 AC_SUBST(TCL_STUB_LIB_SPEC)
571 AC_SUBST(TCL_SHLIB_SUFFIX)
574 if test "${use_tcl}" = "no" ; then
582 # Figure out what C libraries are required to compile programs
583 # that use "readline()" library.
585 TARGET_READLINE_LIBS=""
586 TARGET_READLINE_INC=""
587 TARGET_HAVE_READLINE=0
588 TARGET_HAVE_EDITLINE=0
589 AC_ARG_ENABLE([editline],
590 [AS_HELP_STRING([--enable-editline],[enable BSD editline support])],
591 [with_editline=$enableval],
592 [with_editline=auto])
593 AC_ARG_ENABLE([readline],
594 [AS_HELP_STRING([--disable-readline],[disable readline support])],
595 [with_readline=$enableval],
596 [with_readline=auto])
598 if test x"$with_editline" != xno; then
601 TARGET_HAVE_EDITLINE=1
602 AC_SEARCH_LIBS(readline,edit,[with_readline=no],[TARGET_HAVE_EDITLINE=0])
603 TARGET_READLINE_LIBS=$LIBS
606 if test x"$with_readline" != xno; then
609 AC_ARG_WITH([readline-lib],
610 [AS_HELP_STRING([--with-readline-lib],[specify readline library])],
611 [with_readline_lib=$withval],
612 [with_readline_lib="auto"])
613 if test "x$with_readline_lib" = xauto; then
616 AC_SEARCH_LIBS(tgetent, [readline ncurses curses termcap], [term_LIBS="$LIBS"], [term_LIBS=""])
617 AC_CHECK_LIB([readline], [readline], [TARGET_READLINE_LIBS="-lreadline"], [found="no"])
618 TARGET_READLINE_LIBS="$TARGET_READLINE_LIBS $term_LIBS"
621 TARGET_READLINE_LIBS="$with_readline_lib"
624 AC_ARG_WITH([readline-inc],
625 [AS_HELP_STRING([--with-readline-inc],[specify readline include paths])],
626 [with_readline_inc=$withval],
627 [with_readline_inc="auto"])
628 if test "x$with_readline_inc" = xauto; then
629 AC_CHECK_HEADER(readline.h, [found="yes"], [
631 if test "$cross_compiling" != yes; then
632 for dir in /usr /usr/local /usr/local/readline /usr/contrib /mingw; do
633 for subdir in include include/readline; do
634 AC_CHECK_FILE($dir/$subdir/readline.h, found=yes)
635 if test "$found" = "yes"; then
636 TARGET_READLINE_INC="-I$dir/$subdir"
640 test "$found" = "yes" && break
645 TARGET_READLINE_INC="$with_readline_inc"
648 if test x"$found" = xno; then
649 TARGET_READLINE_LIBS=""
650 TARGET_READLINE_INC=""
651 TARGET_HAVE_READLINE=0
653 TARGET_HAVE_READLINE=1
656 AC_ARG_WITH([linenoise],
657 [AS_HELP_STRING([--with-linenoise=DIR],[source directory for linenoise library])],
658 [with_linenoise=$withval],
659 [with_linenoise="no"])
660 if test "x$with_linenoise" != "xno"; then
661 TARGET_HAVE_READLINE=0
662 TARGET_HAVE_EDITLINE=0
663 TARGET_HAVE_LINENOISE=1
664 TARGET_READLINE_INC="-I${with_linenoise}"
665 TARGET_READLINE_LIBS="${with_linenoise}/linenoise.c"
666 echo "using linenoise source code at ${with_linenoise}"
668 TARGET_HAVE_LINENOISE=0
669 echo "not using linenoise"
672 AC_SUBST(TARGET_READLINE_LIBS)
673 AC_SUBST(TARGET_READLINE_INC)
674 AC_SUBST(TARGET_HAVE_READLINE)
675 AC_SUBST(TARGET_HAVE_EDITLINE)
676 AC_SUBST(TARGET_HAVE_LINENOISE)
680 # Figure out what C libraries are required to compile programs
681 # that use "fdatasync()" function.
683 AC_SEARCH_LIBS(fdatasync, [rt])
686 # check for debug enabled
687 AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],[enable debugging & verbose explain]))
688 AC_MSG_CHECKING([build type])
689 if test "${enable_debug}" = "yes" ; then
690 TARGET_DEBUG="-DSQLITE_DEBUG=1 -DSQLITE_ENABLE_SELECTTRACE -DSQLITE_ENABLE_WHERETRACE -O0 -Wall"
691 AC_MSG_RESULT([debug])
693 TARGET_DEBUG="-DNDEBUG"
694 AC_MSG_RESULT([release])
696 AC_SUBST(TARGET_DEBUG)
699 # See whether we should use the amalgamation to build
701 AC_ARG_ENABLE(amalgamation, AS_HELP_STRING([--disable-amalgamation],
702 [Disable the amalgamation and instead build all files separately]))
703 if test "${enable_amalgamation}" = "no" ; then
706 AC_SUBST(USE_AMALGAMATION)
709 # By default, amalgamation sqlite3.c will have #line directives.
710 # This is a build option not shown by ./configure --help
711 # To control it, use configure option: amalgamation_line_macros=?
712 # where ? is no to suppress #line directives or yes to create them.
713 AMALGAMATION_LINE_MACROS=--linemacros=1
714 AC_ARG_VAR(amalgamation_line_macros,)
715 AC_SUBST(AMALGAMATION_LINE_MACROS)
716 if test "${amalgamation_line_macros+set}" = set; then :
717 enableval=$amalgamation_line_macros;
719 if test "${amalgamation_line_macros}" = "yes" ; then
720 AMALGAMATION_LINE_MACROS=--linemacros=1
722 if test "${amalgamation_line_macros}" = "no" ; then
723 AMALGAMATION_LINE_MACROS=--linemacros=0
727 # Look for zlib. Only needed by extensions and by the sqlite3.exe shell
728 AC_CHECK_HEADERS(zlib.h)
729 AC_SEARCH_LIBS(deflate, z, [HAVE_ZLIB="-DSQLITE_HAVE_ZLIB=1"], [HAVE_ZLIB=""])
733 # See whether we should allow loadable extensions
734 AC_ARG_ENABLE(load-extension, AS_HELP_STRING([--disable-load-extension],
735 [Disable loading of external extensions]),,[enable_load_extension=yes])
736 if test "${enable_load_extension}" = "yes" ; then
738 AC_SEARCH_LIBS(dlopen, dl)
740 OPT_FEATURE_FLAGS="-DSQLITE_OMIT_LOAD_EXTENSION=1"
744 # Do we want to support math functions
747 AS_HELP_STRING([--disable-math],[Disable math functions]))
748 AC_MSG_CHECKING([whether to support math functions])
749 if test "$enable_math" = "no"; then
753 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MATH_FUNCTIONS"
754 AC_SEARCH_LIBS(ceil, m)
758 # Do we want to support JSON functions
761 AS_HELP_STRING([--disable-json],[Disable JSON functions]))
762 AC_MSG_CHECKING([whether to support JSON functions])
763 if test "$enable_json" = "no"; then
765 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_OMIT_JSON"
771 # The --enable-all argument is short-hand to enable
772 # multiple extensions.
773 AC_ARG_ENABLE(all, AS_HELP_STRING([--enable-all],
774 [Enable FTS4, FTS5, Geopoly, RTree, Sessions]))
777 # Do we want to support memsys3 and/or memsys5
779 AC_ARG_ENABLE(memsys5,
780 AS_HELP_STRING([--enable-memsys5],[Enable MEMSYS5]))
781 AC_MSG_CHECKING([whether to support MEMSYS5])
782 if test "${enable_memsys5}" = "yes"; then
783 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5"
788 AC_ARG_ENABLE(memsys3,
789 AS_HELP_STRING([--enable-memsys3],[Enable MEMSYS3]))
790 AC_MSG_CHECKING([whether to support MEMSYS3])
791 if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then
792 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3"
799 # See whether we should enable Full Text Search extensions
800 AC_ARG_ENABLE(fts3, AS_HELP_STRING([--enable-fts3],
801 [Enable the FTS3 extension]))
802 AC_MSG_CHECKING([whether to support FTS3])
803 if test "${enable_fts3}" = "yes" ; then
804 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS3"
809 AC_ARG_ENABLE(fts4, AS_HELP_STRING([--enable-fts4],
810 [Enable the FTS4 extension]))
811 AC_MSG_CHECKING([whether to support FTS4])
812 if test "${enable_fts4}" = "yes" -o "${enable_all}" = "yes" ; then
814 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS4"
815 AC_SEARCH_LIBS([log],[m])
819 AC_ARG_ENABLE(fts5, AS_HELP_STRING([--enable-fts5],
820 [Enable the FTS5 extension]))
821 AC_MSG_CHECKING([whether to support FTS5])
822 if test "${enable_fts5}" = "yes" -o "${enable_all}" = "yes" ; then
824 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS5"
825 AC_SEARCH_LIBS([log],[m])
831 # See whether we should enable the LIMIT clause on UPDATE and DELETE
833 AC_ARG_ENABLE(update-limit, AS_HELP_STRING([--enable-update-limit],
834 [Enable the UPDATE/DELETE LIMIT clause]))
835 AC_MSG_CHECKING([whether to support LIMIT on UPDATE and DELETE statements])
836 if test "${enable_update_limit}" = "yes" ; then
837 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT"
844 # See whether we should enable GEOPOLY
845 AC_ARG_ENABLE(geopoly, AS_HELP_STRING([--enable-geopoly],
846 [Enable the GEOPOLY extension]),
847 [enable_geopoly=yes],[enable_geopoly=no])
848 AC_MSG_CHECKING([whether to support GEOPOLY])
849 if test "${enable_geopoly}" = "yes" -o "${enable_all}" = "yes" ; then
850 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_GEOPOLY"
858 # See whether we should enable RTREE
859 AC_ARG_ENABLE(rtree, AS_HELP_STRING([--enable-rtree],
860 [Enable the RTREE extension]))
861 AC_MSG_CHECKING([whether to support RTREE])
862 if test "${enable_rtree}" = "yes" ; then
863 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_RTREE"
870 # See whether we should enable the SESSION extension
871 AC_ARG_ENABLE(session, AS_HELP_STRING([--enable-session],
872 [Enable the SESSION extension]))
873 AC_MSG_CHECKING([whether to support SESSION])
874 if test "${enable_session}" = "yes" -o "${enable_all}" = "yes" ; then
875 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_SESSION"
876 OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_PREUPDATE_HOOK"
883 # attempt to duplicate any OMITS and ENABLES into the ${OPT_FEATURE_FLAGS} parameter
884 for option in $CFLAGS $CPPFLAGS
887 -DSQLITE_OMIT*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
888 -DSQLITE_ENABLE*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
891 AC_SUBST(OPT_FEATURE_FLAGS)
894 # attempt to remove any OMITS and ENABLES from the $(CFLAGS) parameter
896 for option in $CFLAGS
901 *) ac_temp_CFLAGS="$ac_temp_CFLAGS $option";;
904 CFLAGS=$ac_temp_CFLAGS
907 # attempt to remove any OMITS and ENABLES from the $(CPPFLAGS) parameter
909 for option in $CPPFLAGS
914 *) ac_temp_CPPFLAGS="$ac_temp_CPPFLAGS $option";;
917 CPPFLAGS=$ac_temp_CPPFLAGS
920 # attempt to remove any OMITS and ENABLES from the $(BUILD_CFLAGS) parameter
921 ac_temp_BUILD_CFLAGS=""
922 for option in $BUILD_CFLAGS
927 *) ac_temp_BUILD_CFLAGS="$ac_temp_BUILD_CFLAGS $option";;
930 BUILD_CFLAGS=$ac_temp_BUILD_CFLAGS
934 # See whether we should use GCOV
935 AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],
936 [Enable coverage testing using gcov]))
937 if test "${use_gcov}" = "yes" ; then
945 # Enable/disabled amalagamation line macros
947 AMALGAMATION_LINE_MACROS=--linemacros=0
948 if test "${amalgamation_line_macros}" = "yes" ; then
949 AMALGAMATION_LINE_MACROS=--linemacros=1
951 if test "${amalgamation_line_macros}" = "no" ; then
952 AMALGAMATION_LINE_MACROS=--linemacros=0
954 AC_SUBST(AMALGAMATION_LINE_MACROS)
957 # Output the config header
958 AC_CONFIG_HEADERS(sqlite_cfg.h)
961 # Generate the output files.
963 AC_SUBST(BUILD_CFLAGS)