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(sqlite, 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])
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.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
140 TCLLIBDIR="${TCLLIBDIR}/sqlite3"
145 # Set up an appropriate program prefix
147 if test "$program_prefix" = "NONE"; then
150 AC_SUBST(program_prefix)
152 VERSION=[`cat $srcdir/VERSION | sed 's/^\([0-9]*\.*[0-9]*\).*/\1/'`]
153 AC_MSG_NOTICE(Version set to $VERSION)
155 RELEASE=`cat $srcdir/VERSION`
156 AC_MSG_NOTICE(Release set to $RELEASE)
158 VERSION_NUMBER=[`cat $srcdir/VERSION \
159 | sed 's/[^0-9]/ /g' \
160 | awk '{printf "%d%03d%03d",$1,$2,$3}'`]
161 AC_MSG_NOTICE(Version number set to $VERSION_NUMBER)
162 AC_SUBST(VERSION_NUMBER)
165 # Locate a compiler for the build machine. This compiler should
166 # generate command-line programs that run on the build machine.
168 if test x"$cross_compiling" = xno; then
172 if test "${BUILD_CC+set}" != set; then
173 AC_CHECK_PROGS(BUILD_CC, gcc cc cl)
175 if test "${BUILD_CFLAGS+set}" != set; then
182 # Do we want to support multithreaded use of sqlite
184 AC_ARG_ENABLE(threadsafe,
185 AC_HELP_STRING([--disable-threadsafe],[Disable mutexing]),,enable_threadsafe=yes)
186 AC_MSG_CHECKING([whether to support threadsafe operation])
187 if test "$enable_threadsafe" = "no"; then
194 AC_SUBST(SQLITE_THREADSAFE)
196 if test "$SQLITE_THREADSAFE" = "1"; then
197 AC_SEARCH_LIBS(pthread_create, pthread)
201 # Do we want to support release
203 AC_ARG_ENABLE(releasemode,
204 AC_HELP_STRING([--enable-releasemode],[Support libtool link to release mode]),,enable_releasemode=no)
205 AC_MSG_CHECKING([whether to support shared library linked as release mode or not])
206 if test "$enable_releasemode" = "no"; then
210 ALLOWRELEASE="-release `cat $srcdir/VERSION`"
213 AC_SUBST(ALLOWRELEASE)
216 # Do we want temporary databases in memory
218 AC_ARG_ENABLE(tempstore,
219 AC_HELP_STRING([--enable-tempstore],[Use an in-ram database for temporary tables (never,no,yes,always)]),,enable_tempstore=no)
220 AC_MSG_CHECKING([whether to use an in-ram database for temporary tables])
221 case "$enable_tempstore" in
224 AC_MSG_RESULT([never])
236 AC_MSG_RESULT([always])
247 # Lots of things are different if we are compiling for Windows using
248 # the CYGWIN environment. So check for that special case and handle
249 # things accordingly.
251 AC_MSG_CHECKING([if executables have the .exe suffix])
252 if test "$config_BUILD_EXEEXT" = ".exe"; then
256 AC_MSG_RESULT(unknown)
258 if test "$CYGWIN" != "yes"; then
261 if test "$CYGWIN" = "yes"; then
266 if test x"$cross_compiling" = xno; then
267 TARGET_EXEEXT=$BUILD_EXEEXT
269 TARGET_EXEEXT=$config_TARGET_EXEEXT
271 if test "$TARGET_EXEEXT" = ".exe"; then
274 CFLAGS="$CFLAGS -DSQLITE_OS_WIN=1"
278 CFLAGS="$CFLAGS -DSQLITE_OS_UNIX=1"
281 AC_SUBST(BUILD_EXEEXT)
282 AC_SUBST(SQLITE_OS_UNIX)
283 AC_SUBST(SQLITE_OS_WIN)
284 AC_SUBST(TARGET_EXEEXT)
287 # Figure out all the parameters needed to compile against Tcl.
289 # This code is derived from the SC_PATH_TCLCONFIG and SC_LOAD_TCLCONFIG
290 # macros in the in the tcl.m4 file of the standard TCL distribution.
291 # Those macros could not be used directly since we have to make some
292 # minor changes to accomodate systems that do not have TCL installed.
294 AC_ARG_ENABLE(tcl, AC_HELP_STRING([--disable-tcl],[do not build TCL extension]),
295 [use_tcl=$enableval],[use_tcl=yes])
296 if test "${use_tcl}" = "yes" ; then
297 AC_ARG_WITH(tcl, AC_HELP_STRING([--with-tcl=DIR],[directory containing tcl configuration (tclConfig.sh)]), with_tclconfig=${withval})
298 AC_MSG_CHECKING([for Tcl configuration])
299 AC_CACHE_VAL(ac_cv_c_tclconfig,[
300 # First check to see if --with-tcl was specified.
301 if test x"${with_tclconfig}" != x ; then
302 if test -f "${with_tclconfig}/tclConfig.sh" ; then
303 ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
305 AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
309 # Start autosearch by asking tclsh
310 if test x"${ac_cv_c_tclconfig}" = x ; then
311 if test x"$cross_compiling" = xno; then
312 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD}`
314 if test -f "$i/tclConfig.sh" ; then
315 ac_cv_c_tclconfig="$i"
322 # On ubuntu 14.10, $auto_path on tclsh is not quite correct.
323 # So try again after applying corrections.
324 if test x"${ac_cv_c_tclconfig}" = x ; then
325 if test x"$cross_compiling" = xno; then
326 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD} | sed 's,/tcltk/tcl,/tcl,g'`
328 if test -f "$i/tclConfig.sh" ; then
329 ac_cv_c_tclconfig="$i"
336 # then check for a private Tcl installation
337 if test x"${ac_cv_c_tclconfig}" = x ; then
340 `ls -dr ../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
341 `ls -dr ../tcl[[8-9]].[[0-9]] 2>/dev/null` \
342 `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
344 `ls -dr ../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
345 `ls -dr ../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
346 `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
348 `ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
349 `ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
350 `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null`
352 if test -f "$i/unix/tclConfig.sh" ; then
353 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
359 # check in a few common install locations
360 if test x"${ac_cv_c_tclconfig}" = x ; then
362 `ls -d ${libdir} 2>/dev/null` \
363 `ls -d /usr/local/lib 2>/dev/null` \
364 `ls -d /usr/contrib/lib 2>/dev/null` \
365 `ls -d /usr/lib 2>/dev/null`
367 if test -f "$i/tclConfig.sh" ; then
368 ac_cv_c_tclconfig=`(cd $i; pwd)`
374 # check in a few other private locations
375 if test x"${ac_cv_c_tclconfig}" = x ; then
378 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
379 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \
380 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null`
382 if test -f "$i/unix/tclConfig.sh" ; then
383 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
390 if test x"${ac_cv_c_tclconfig}" = x ; then
392 AC_MSG_WARN(Can't find Tcl configuration definitions)
393 AC_MSG_WARN(*** Without Tcl the regression tests cannot be executed ***)
394 AC_MSG_WARN(*** Consider using --with-tcl=... to define location of Tcl ***)
396 TCL_BIN_DIR=${ac_cv_c_tclconfig}
397 AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)
399 AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh])
400 if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then
401 AC_MSG_RESULT([loading])
402 . $TCL_BIN_DIR/tclConfig.sh
404 AC_MSG_RESULT([file not found])
408 # If the TCL_BIN_DIR is the build directory (not the install directory),
409 # then set the common variable name to the value of the build variables.
410 # For example, the variable TCL_LIB_SPEC will be set to the value
411 # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC
412 # instead of TCL_BUILD_LIB_SPEC since it will work with both an
413 # installed and uninstalled version of Tcl.
416 if test -f $TCL_BIN_DIR/Makefile ; then
417 TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC}
418 TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC}
419 TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH}
423 # eval is required to do the TCL_DBGX substitution
426 eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\""
427 eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\""
428 eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\""
430 eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\""
431 eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\""
432 eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\""
434 AC_SUBST(TCL_VERSION)
435 AC_SUBST(TCL_BIN_DIR)
436 AC_SUBST(TCL_SRC_DIR)
437 AC_SUBST(TCL_INCLUDE_SPEC)
439 AC_SUBST(TCL_LIB_FILE)
440 AC_SUBST(TCL_LIB_FLAG)
441 AC_SUBST(TCL_LIB_SPEC)
443 AC_SUBST(TCL_STUB_LIB_FILE)
444 AC_SUBST(TCL_STUB_LIB_FLAG)
445 AC_SUBST(TCL_STUB_LIB_SPEC)
446 AC_SUBST(TCL_SHLIB_SUFFIX)
449 if test "${use_tcl}" = "no" ; then
457 # Figure out what C libraries are required to compile programs
458 # that use "readline()" library.
460 TARGET_READLINE_LIBS=""
461 TARGET_READLINE_INC=""
462 TARGET_HAVE_READLINE=0
463 TARGET_HAVE_EDITLINE=0
464 AC_ARG_ENABLE([editline],
465 [AC_HELP_STRING([--enable-editline],[enable BSD editline support])],
466 [with_editline=$enableval],
467 [with_editline=auto])
468 AC_ARG_ENABLE([readline],
469 [AC_HELP_STRING([--disable-readline],[disable readline support])],
470 [with_readline=$enableval],
471 [with_readline=auto])
473 if test x"$with_editline" != xno; then
476 TARGET_HAVE_EDITLINE=1
477 AC_SEARCH_LIBS(readline,edit,[with_readline=no],[TARGET_HAVE_EDITLINE=0])
478 TARGET_READLINE_LIBS=$LIBS
481 if test x"$with_readline" != xno; then
484 AC_ARG_WITH([readline-lib],
485 [AC_HELP_STRING([--with-readline-lib],[specify readline library])],
486 [with_readline_lib=$withval],
487 [with_readline_lib="auto"])
488 if test "x$with_readline_lib" = xauto; then
491 AC_SEARCH_LIBS(tgetent, [readline ncurses curses termcap], [term_LIBS="$LIBS"], [term_LIBS=""])
492 AC_CHECK_LIB([readline], [readline], [TARGET_READLINE_LIBS="-lreadline"], [found="no"])
493 TARGET_READLINE_LIBS="$TARGET_READLINE_LIBS $term_LIBS"
496 TARGET_READLINE_LIBS="$with_readline_lib"
499 AC_ARG_WITH([readline-inc],
500 [AC_HELP_STRING([--with-readline-inc],[specify readline include paths])],
501 [with_readline_inc=$withval],
502 [with_readline_inc="auto"])
503 if test "x$with_readline_inc" = xauto; then
504 AC_CHECK_HEADER(readline.h, [found="yes"], [
506 if test "$cross_compiling" != yes; then
507 for dir in /usr /usr/local /usr/local/readline /usr/contrib /mingw; do
508 for subdir in include include/readline; do
509 AC_CHECK_FILE($dir/$subdir/readline.h, found=yes)
510 if test "$found" = "yes"; then
511 TARGET_READLINE_INC="-I$dir/$subdir"
515 test "$found" = "yes" && break
520 TARGET_READLINE_INC="$with_readline_inc"
523 if test x"$found" = xno; then
524 TARGET_READLINE_LIBS=""
525 TARGET_READLINE_INC=""
526 TARGET_HAVE_READLINE=0
528 TARGET_HAVE_READLINE=1
532 AC_SUBST(TARGET_READLINE_LIBS)
533 AC_SUBST(TARGET_READLINE_INC)
534 AC_SUBST(TARGET_HAVE_READLINE)
535 AC_SUBST(TARGET_HAVE_EDITLINE)
538 # Figure out what C libraries are required to compile programs
539 # that use "fdatasync()" function.
541 AC_SEARCH_LIBS(fdatasync, [rt])
544 # check for debug enabled
545 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],[enable debugging & verbose explain]),
546 [use_debug=$enableval],[use_debug=no])
547 if test "${use_debug}" = "yes" ; then
548 TARGET_DEBUG="-DSQLITE_DEBUG=1"
550 TARGET_DEBUG="-DNDEBUG"
552 AC_SUBST(TARGET_DEBUG)
555 # See whether we should use the amalgamation to build
556 AC_ARG_ENABLE(amalgamation, AC_HELP_STRING([--disable-amalgamation],
557 [Disable the amalgamation and instead build all files separately]),
558 [use_amalgamation=$enableval],[use_amalgamation=yes])
559 if test "${use_amalgamation}" != "yes" ; then
562 AC_SUBST(USE_AMALGAMATION)
565 # See whether we should allow loadable extensions
566 AC_ARG_ENABLE(load-extension, AC_HELP_STRING([--disable-load-extension],
567 [Disable loading of external extensions]),
568 [use_loadextension=$enableval],[use_loadextension=yes])
569 if test "${use_loadextension}" = "yes" ; then
571 AC_SEARCH_LIBS(dlopen, dl)
573 OPT_FEATURE_FLAGS="-DSQLITE_OMIT_LOAD_EXTENSION=1"
577 # See whether we should enable Full Text Search extensions
578 AC_ARG_ENABLE(fts3, AC_HELP_STRING([--enable-fts3],
579 [Enable the FTS3 extension]),
580 [enable_fts3=yes],[enable_fts3=no])
581 if test "${enable_fts3}" = "yes" ; then
582 OPT_FEATURE_FLAGS+=" -DSQLITE_ENABLE_FTS3"
584 AC_ARG_ENABLE(fts4, AC_HELP_STRING([--enable-fts4],
585 [Enable the FTS4 extension]),
586 [enable_fts4=yes],[enable_fts4=no])
587 if test "${enable_fts4}" = "yes" ; then
588 OPT_FEATURE_FLAGS+=" -DSQLITE_ENABLE_FTS4"
589 AC_SEARCH_LIBS([log],[m])
591 AC_ARG_ENABLE(fts5, AC_HELP_STRING([--enable-fts5],
592 [Enable the FTS5 extension]),
593 [enable_fts5=yes],[enable_fts5=no])
594 if test "${enable_fts5}" = "yes" ; then
595 OPT_FEATURE_FLAGS+=" -DSQLITE_ENABLE_FTS5"
596 AC_SEARCH_LIBS([log],[m])
600 # See whether we should enable JSON1
601 AC_ARG_ENABLE(json1, AC_HELP_STRING([--enable-json1],
602 [Enable the JSON1 extension]),
603 [enable_json1=yes],[enable_json1=no])
604 if test "${enable_json1}" = "yes" ; then
605 OPT_FEATURE_FLAGS+=" -DSQLITE_ENABLE_JSON1"
609 # See whether we should enable RTREE
610 AC_ARG_ENABLE(rtree, AC_HELP_STRING([--enable-rtree],
611 [Enable the RTREE extension]),
612 [enable_rtree=yes],[enable_rtree=no])
613 if test "${enable_rtree}" = "yes" ; then
614 OPT_FEATURE_FLAGS+=" -DSQLITE_ENABLE_RTREE"
618 # attempt to duplicate any OMITS and ENABLES into the $(OPT_FEATURE_FLAGS) parameter
619 for option in $CFLAGS $CPPFLAGS
622 -DSQLITE_OMIT*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
623 -DSQLITE_ENABLE*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
626 AC_SUBST(OPT_FEATURE_FLAGS)
629 # attempt to remove any OMITS and ENABLES from the $(CFLAGS) parameter
631 for option in $CFLAGS
636 *) ac_temp_CFLAGS="$ac_temp_CFLAGS $option";;
639 CFLAGS=$ac_temp_CFLAGS
642 # attempt to remove any OMITS and ENABLES from the $(CPPFLAGS) parameter
644 for option in $CPPFLAGS
649 *) ac_temp_CPPFLAGS="$ac_temp_CPPFLAGS $option";;
652 CPPFLAGS=$ac_temp_CPPFLAGS
655 # attempt to remove any OMITS and ENABLES from the $(BUILD_CFLAGS) parameter
656 ac_temp_BUILD_CFLAGS=""
657 for option in $BUILD_CFLAGS
662 *) ac_temp_BUILD_CFLAGS="$ac_temp_BUILD_CFLAGS $option";;
665 BUILD_CFLAGS=$ac_temp_BUILD_CFLAGS
669 # See whether we should use GCOV
670 AC_ARG_ENABLE(gcov, AC_HELP_STRING([--enable-gcov],
671 [Enable coverage testing using gcov]),
672 [use_gcov=$enableval],[use_gcov=no])
673 if test "${use_gcov}" = "yes" ; then
682 # Output the config header
683 AC_CONFIG_HEADERS(config.h)
686 # Generate the output files.
688 AC_SUBST(BUILD_CFLAGS)