blob: 46afeb7527f0a357e993516d24ce4a0c17d344dd [file] [log] [blame]
drh71eb93e2001-09-28 01:34:43 +00001#
drh71eb93e2001-09-28 01:34:43 +00002# 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:
6#
7# srcdir
8#
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.
12#
13# bindir
14#
15# The name of the directory where executables should be
16# written by the "install" target of the makefile.
17#
18# program_prefix
19#
20# Add this prefix to the names of all executables that run
21# on the target machine. Default: ""
22#
23# ENABLE_SHARED
24#
25# True if shared libraries should be generated.
26#
27# BUILD_CC
28#
29# The name of a command that is used to convert C
30# source files into executables that run on the build
31# platform.
32#
33# BUILD_CFLAGS
34#
35# Switches that the build compiler needs in order to construct
36# command-line programs.
37#
38# BUILD_LIBS
39#
40# Libraries that the build compiler needs in order to construct
41# command-line programs.
42#
43# BUILD_EXEEXT
44#
45# The filename extension for executables on the build
46# platform. "" for Unix and ".exe" for Windows.
47#
drh7b5717e2004-11-25 13:50:01 +000048# TCL_*
drh71eb93e2001-09-28 01:34:43 +000049#
drh7b5717e2004-11-25 13:50:01 +000050# Lots of values are read in from the tclConfig.sh script,
drh4b2266a2004-11-27 15:52:16 +000051# if that script is available. This values are used for
52# constructing and installing the TCL extension.
drh71eb93e2001-09-28 01:34:43 +000053#
54# TARGET_READLINE_LIBS
55#
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".
60#
61# TARGET_READLINE_INC
62#
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.
66#
drh71eb93e2001-09-28 01:34:43 +000067# TARGET_EXEEXT
68#
69# The filename extension for executables on the
70# target platform. "" for Unix and ".exe" for windows.
71#
72# The generated configure script will make an attempt to guess
73# at all of the above parameters. You can override any of
74# the guesses by setting the environment variable named
75# "config_AAAA" where "AAAA" is the name of the parameter
76# described above. (Exception: srcdir cannot be set this way.)
77# If you have a file that sets one or more of these environment
78# variables, you can invoke configure as follows:
79#
80# configure --with-hints=FILE
81#
82# where FILE is the name of the file that sets the environment
83# variables. FILE should be an absolute pathname.
84#
drh71eb93e2001-09-28 01:34:43 +000085# This configure.in file is easy to reuse on other projects. Just
86# change the argument to AC_INIT(). And disable any features that
87# you don't need (for example BLT) by erasing or commenting out
88# the corresponding code.
89#
mlcreechb87057f2008-03-06 07:19:20 +000090AC_INIT(sqlite, m4_esyscmd([cat VERSION | tr -d '\n']))
drh71eb93e2001-09-28 01:34:43 +000091
vapierfaa68db2009-04-01 07:38:31 +000092dnl Make sure the local VERSION file matches this configure script
danielk19776f050aa2009-04-25 08:39:14 +000093sqlite_version_sanity_check=`cat $srcdir/VERSION | tr -d '\n'`
vapierfaa68db2009-04-01 07:38:31 +000094if test "$PACKAGE_VERSION" != "$sqlite_version_sanity_check" ; then
95AC_MSG_ERROR([configure script is out of date:
96 configure \$PACKAGE_VERSION = $PACKAGE_VERSION
97 top level VERSION file = $sqlite_version_sanity_check
98please regen with autoconf])
99fi
100
drh71eb93e2001-09-28 01:34:43 +0000101dnl Put the RCS revision string after AC_INIT so that it will also
102dnl show in in configure.
103# The following RCS revision string applies to configure.in
danielk19776f050aa2009-04-25 08:39:14 +0000104# $Revision: 1.56 $
drh71eb93e2001-09-28 01:34:43 +0000105
106#########
107# Programs needed
108#
109AC_PROG_LIBTOOL
110AC_PROG_INSTALL
drhf1878b42006-01-23 18:06:52 +0000111AC_PROG_AWK
drh71eb93e2001-09-28 01:34:43 +0000112
113#########
mlcreech636a9952008-05-05 22:52:56 +0000114# Enable large file support (if special flags are necessary)
115#
116AC_SYS_LARGEFILE
117
118#########
mlcreechb87057f2008-03-06 07:19:20 +0000119# Check for needed/wanted data types
120AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, intptr_t, uint8_t,
121 uint16_t, uint32_t, uint64_t, uintptr_t])
122
123#########
124# Check for needed/wanted headers
mlcreech5b0a9eb2008-03-09 01:38:09 +0000125AC_CHECK_HEADERS([sys/types.h stdlib.h stdint.h inttypes.h])
126
127#########
128# Figure out whether or not we have these functions
129#
drhdbe4b882011-06-20 18:00:17 +0000130AC_CHECK_FUNCS([usleep fdatasync localtime_r gmtime_r localtime_s utime])
mlcreech5b0a9eb2008-03-09 01:38:09 +0000131
mlcreechab1c47b2008-03-09 02:51:10 +0000132#########
mlcreechf3868112008-03-11 18:03:30 +0000133# By default, we use the amalgamation (this may be changed below...)
134#
135USE_AMALGAMATION=1
136
137#########
mlcreechab1c47b2008-03-09 02:51:10 +0000138# See whether we can run specific tclsh versions known to work well;
139# if not, then we fall back to plain tclsh.
140# TODO: try other versions before falling back?
141#
drhd7ceb372010-07-27 16:42:22 +0000142AC_CHECK_PROGS(TCLSH_CMD, [tclsh8.5 tclsh], none)
mlcreechf3868112008-03-11 18:03:30 +0000143if test "$TCLSH_CMD" = "none"; then
144 # If we can't find a local tclsh, then building the amalgamation will fail.
145 # We act as though --disable-amalgamation has been used.
146 echo "Warning: can't find tclsh - defaulting to non-amalgamation build."
147 USE_AMALGAMATION=0
148 TCLSH_CMD="tclsh"
149fi
mlcreechab1c47b2008-03-09 02:51:10 +0000150AC_SUBST(TCLSH_CMD)
151
vapier6d120f32009-01-28 04:46:14 +0000152AC_ARG_VAR([TCLLIBDIR], [Where to install tcl plugin])
153if test "x${TCLLIBDIR+set}" != "xset" ; then
154 TCLLIBDIR='$(libdir)'
155 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD}` ; do
156 TCLLIBDIR=$i
157 break
158 done
159 TCLLIBDIR="${TCLLIBDIR}/sqlite3"
160fi
161
mlcreechb87057f2008-03-06 07:19:20 +0000162
163#########
drh71eb93e2001-09-28 01:34:43 +0000164# Set up an appropriate program prefix
165#
166if test "$program_prefix" = "NONE"; then
167 program_prefix=""
168fi
169AC_SUBST(program_prefix)
170
drh4b2266a2004-11-27 15:52:16 +0000171VERSION=[`cat $srcdir/VERSION | sed 's/^\([0-9]*\.*[0-9]*\).*/\1/'`]
vapier695f0972009-01-26 21:43:16 +0000172AC_MSG_NOTICE(Version set to $VERSION)
a.rottmannc7e93832003-03-24 09:39:32 +0000173AC_SUBST(VERSION)
drh4b2266a2004-11-27 15:52:16 +0000174RELEASE=`cat $srcdir/VERSION`
vapier695f0972009-01-26 21:43:16 +0000175AC_MSG_NOTICE(Release set to $RELEASE)
drh4b2266a2004-11-27 15:52:16 +0000176AC_SUBST(RELEASE)
vapier695f0972009-01-26 21:43:16 +0000177VERSION_NUMBER=[`cat $srcdir/VERSION \
drhb7977832005-02-16 03:45:51 +0000178 | sed 's/[^0-9]/ /g' \
drh26d0e2a2005-07-06 13:51:27 +0000179 | awk '{printf "%d%03d%03d",$1,$2,$3}'`]
vapier695f0972009-01-26 21:43:16 +0000180AC_MSG_NOTICE(Version number set to $VERSION_NUMBER)
drhb7977832005-02-16 03:45:51 +0000181AC_SUBST(VERSION_NUMBER)
a.rottmannc7e93832003-03-24 09:39:32 +0000182
drh71eb93e2001-09-28 01:34:43 +0000183#########
184# Check to see if the --with-hints=FILE option is used. If there is none,
185# then check for a files named "$host.hints" and ../$hosts.hints where
186# $host is the hostname of the build system. If still no hints are
187# found, try looking in $system.hints and ../$system.hints where
188# $system is the result of uname -s.
189#
190AC_ARG_WITH(hints,
drh94e4f822006-02-15 02:00:25 +0000191 AC_HELP_STRING([--with-hints=FILE],[Read configuration options from FILE]),
drh71eb93e2001-09-28 01:34:43 +0000192 hints=$withval)
193if test "$hints" = ""; then
194 host=`hostname | sed 's/\..*//'`
195 if test -r $host.hints; then
196 hints=$host.hints
197 else
198 if test -r ../$host.hints; then
199 hints=../$host.hints
200 fi
201 fi
202fi
203if test "$hints" = ""; then
204 sys=`uname -s`
205 if test -r $sys.hints; then
206 hints=$sys.hints
207 else
208 if test -r ../$sys.hints; then
209 hints=../$sys.hints
210 fi
211 fi
212fi
213if test "$hints" != ""; then
214 AC_MSG_RESULT(reading hints from $hints)
215 . $hints
216fi
217
218#########
219# Locate a compiler for the build machine. This compiler should
220# generate command-line programs that run on the build machine.
221#
vapierc8a15302007-02-17 14:31:55 +0000222if test x"$cross_compiling" = xno; then
223 BUILD_CC=$CC
224 BUILD_CFLAGS=$CFLAGS
drh71eb93e2001-09-28 01:34:43 +0000225else
vapierc8a15302007-02-17 14:31:55 +0000226 if test "${BUILD_CC+set}" != set; then
227 AC_CHECK_PROGS(BUILD_CC, gcc cc cl)
228 fi
229 if test "${BUILD_CFLAGS+set}" != set; then
230 BUILD_CFLAGS="-g"
231 fi
drh71eb93e2001-09-28 01:34:43 +0000232fi
233AC_SUBST(BUILD_CC)
drh71eb93e2001-09-28 01:34:43 +0000234
235##########
dougcurrie0f290bf2004-06-21 18:57:29 +0000236# Do we want to support multithreaded use of sqlite
drh71eb93e2001-09-28 01:34:43 +0000237#
dougcurrie0f290bf2004-06-21 18:57:29 +0000238AC_ARG_ENABLE(threadsafe,
drh5a3032b2007-09-03 16:12:09 +0000239AC_HELP_STRING([--enable-threadsafe],[Support threadsafe operation]),,enable_threadsafe=yes)
dougcurrie0f290bf2004-06-21 18:57:29 +0000240AC_MSG_CHECKING([whether to support threadsafe operation])
241if test "$enable_threadsafe" = "no"; then
drh5a3032b2007-09-03 16:12:09 +0000242 SQLITE_THREADSAFE=0
paulb0208cc2003-04-13 18:26:49 +0000243 AC_MSG_RESULT([no])
244else
drh5a3032b2007-09-03 16:12:09 +0000245 SQLITE_THREADSAFE=1
paulb0208cc2003-04-13 18:26:49 +0000246 AC_MSG_RESULT([yes])
247fi
drh5a3032b2007-09-03 16:12:09 +0000248AC_SUBST(SQLITE_THREADSAFE)
paulb0208cc2003-04-13 18:26:49 +0000249
drh5a3032b2007-09-03 16:12:09 +0000250if test "$SQLITE_THREADSAFE" = "1"; then
mlcreechc658b0f2008-03-09 02:20:11 +0000251 AC_SEARCH_LIBS(pthread_create, pthread)
dougcurrie65623c72004-09-20 14:57:23 +0000252fi
dougcurrie65623c72004-09-20 14:57:23 +0000253
paulb0208cc2003-04-13 18:26:49 +0000254##########
drh91636d52005-11-24 23:14:00 +0000255# Do we want to allow a connection created in one thread to be used
256# in another thread. This does not work on many Linux systems (ex: RedHat 9)
257# due to bugs in the threading implementations. This is thus off by default.
258#
259AC_ARG_ENABLE(cross-thread-connections,
drh94e4f822006-02-15 02:00:25 +0000260AC_HELP_STRING([--enable-cross-thread-connections],[Allow connection sharing across threads]),,enable_xthreadconnect=no)
drh91636d52005-11-24 23:14:00 +0000261AC_MSG_CHECKING([whether to allow connections to be shared across threads])
262if test "$enable_xthreadconnect" = "no"; then
263 XTHREADCONNECT=''
264 AC_MSG_RESULT([no])
265else
266 XTHREADCONNECT='-DSQLITE_ALLOW_XTHREAD_CONNECT=1'
267 AC_MSG_RESULT([yes])
268fi
269AC_SUBST(XTHREADCONNECT)
270
271##########
xdong3b5543c2003-09-23 00:36:50 +0000272# Do we want to support release
273#
274AC_ARG_ENABLE(releasemode,
drh94e4f822006-02-15 02:00:25 +0000275AC_HELP_STRING([--enable-releasemode],[Support libtool link to release mode]),,enable_releasemode=no)
xdong3b5543c2003-09-23 00:36:50 +0000276AC_MSG_CHECKING([whether to support shared library linked as release mode or not])
277if test "$enable_releasemode" = "no"; then
278 ALLOWRELEASE=""
279 AC_MSG_RESULT([no])
280else
drh0b47d342007-11-27 14:50:06 +0000281 ALLOWRELEASE="-release `cat $srcdir/VERSION`"
xdong3b5543c2003-09-23 00:36:50 +0000282 AC_MSG_RESULT([yes])
283fi
284AC_SUBST(ALLOWRELEASE)
285
286##########
paulb0208cc2003-04-13 18:26:49 +0000287# Do we want temporary databases in memory
288#
dougcurrie0f290bf2004-06-21 18:57:29 +0000289AC_ARG_ENABLE(tempstore,
drh94e4f822006-02-15 02:00:25 +0000290AC_HELP_STRING([--enable-tempstore],[Use an in-ram database for temporary tables (never,no,yes,always)]),,enable_tempstore=no)
paulb0208cc2003-04-13 18:26:49 +0000291AC_MSG_CHECKING([whether to use an in-ram database for temporary tables])
dougcurrie0f290bf2004-06-21 18:57:29 +0000292case "$enable_tempstore" in
paulb0208cc2003-04-13 18:26:49 +0000293 never )
paul2dc96f92003-04-20 11:46:34 +0000294 TEMP_STORE=0
paulb0208cc2003-04-13 18:26:49 +0000295 AC_MSG_RESULT([never])
296 ;;
297 no )
paul2dc96f92003-04-20 11:46:34 +0000298 TEMP_STORE=1
paulb0208cc2003-04-13 18:26:49 +0000299 AC_MSG_RESULT([no])
300 ;;
drh54414bb2005-10-10 00:05:50 +0000301 yes )
drh8b727472009-01-19 18:18:40 +0000302 TEMP_STORE=2
303 AC_MSG_RESULT([yes])
304 ;;
305 always )
drh54414bb2005-10-10 00:05:50 +0000306 TEMP_STORE=3
307 AC_MSG_RESULT([always])
308 ;;
paulb0208cc2003-04-13 18:26:49 +0000309 * )
drh54414bb2005-10-10 00:05:50 +0000310 TEMP_STORE=1
drh8b727472009-01-19 18:18:40 +0000311 AC_MSG_RESULT([no])
paulb0208cc2003-04-13 18:26:49 +0000312 ;;
313esac
paul2dc96f92003-04-20 11:46:34 +0000314
paul2dc96f92003-04-20 11:46:34 +0000315AC_SUBST(TEMP_STORE)
paulb0208cc2003-04-13 18:26:49 +0000316
drh71eb93e2001-09-28 01:34:43 +0000317###########
318# Lots of things are different if we are compiling for Windows using
319# the CYGWIN environment. So check for that special case and handle
320# things accordingly.
321#
322AC_MSG_CHECKING([if executables have the .exe suffix])
323if test "$config_BUILD_EXEEXT" = ".exe"; then
324 CYGWIN=yes
325 AC_MSG_RESULT(yes)
326else
327 AC_MSG_RESULT(unknown)
328fi
329if test "$CYGWIN" != "yes"; then
330 AC_CYGWIN
331fi
332if test "$CYGWIN" = "yes"; then
333 BUILD_EXEEXT=.exe
334else
dougcurrie6194a5f2003-12-19 20:09:51 +0000335 BUILD_EXEEXT=$EXEEXT
drh71eb93e2001-09-28 01:34:43 +0000336fi
vapierc8a15302007-02-17 14:31:55 +0000337if test x"$cross_compiling" = xno; then
drh71eb93e2001-09-28 01:34:43 +0000338 TARGET_EXEEXT=$BUILD_EXEEXT
339else
340 TARGET_EXEEXT=$config_TARGET_EXEEXT
341fi
342if test "$TARGET_EXEEXT" = ".exe"; then
drh60a1e4b2006-06-03 18:02:15 +0000343 if test $OS2_SHELL ; then
danielk197729bafea2008-06-26 10:41:19 +0000344 SQLITE_OS_UNIX=0
345 SQLITE_OS_WIN=0
346 SQLITE_OS_OS2=1
347 CFLAGS="$CFLAGS -DSQLITE_OS_OS2=1"
drh60a1e4b2006-06-03 18:02:15 +0000348 else
danielk197729bafea2008-06-26 10:41:19 +0000349 SQLITE_OS_UNIX=0
350 SQLITE_OS_WIN=1
351 SQLITE_OS_OS2=0
danielk197729bafea2008-06-26 10:41:19 +0000352 CFLAGS="$CFLAGS -DSQLITE_OS_WIN=1"
drh60a1e4b2006-06-03 18:02:15 +0000353 fi
drh71eb93e2001-09-28 01:34:43 +0000354else
danielk197729bafea2008-06-26 10:41:19 +0000355 SQLITE_OS_UNIX=1
356 SQLITE_OS_WIN=0
357 SQLITE_OS_OS2=0
danielk197729bafea2008-06-26 10:41:19 +0000358 CFLAGS="$CFLAGS -DSQLITE_OS_UNIX=1"
drh71eb93e2001-09-28 01:34:43 +0000359fi
drh71eb93e2001-09-28 01:34:43 +0000360
361AC_SUBST(BUILD_EXEEXT)
danielk197729bafea2008-06-26 10:41:19 +0000362AC_SUBST(SQLITE_OS_UNIX)
363AC_SUBST(SQLITE_OS_WIN)
364AC_SUBST(SQLITE_OS_OS2)
drh71eb93e2001-09-28 01:34:43 +0000365AC_SUBST(TARGET_EXEEXT)
366
367##########
drh7b5717e2004-11-25 13:50:01 +0000368# Figure out all the parameters needed to compile against Tcl.
drh71eb93e2001-09-28 01:34:43 +0000369#
drh7b5717e2004-11-25 13:50:01 +0000370# This code is derived from the SC_PATH_TCLCONFIG and SC_LOAD_TCLCONFIG
371# macros in the in the tcl.m4 file of the standard TCL distribution.
372# Those macros could not be used directly since we have to make some
373# minor changes to accomodate systems that do not have TCL installed.
drh71eb93e2001-09-28 01:34:43 +0000374#
drh94e4f822006-02-15 02:00:25 +0000375AC_ARG_ENABLE(tcl, AC_HELP_STRING([--disable-tcl],[do not build TCL extension]),
drh7b5717e2004-11-25 13:50:01 +0000376 [use_tcl=$enableval],[use_tcl=yes])
377if test "${use_tcl}" = "yes" ; then
drh94e4f822006-02-15 02:00:25 +0000378 AC_ARG_WITH(tcl, AC_HELP_STRING([--with-tcl=DIR],[directory containing tcl configuration (tclConfig.sh)]), with_tclconfig=${withval})
drh7b5717e2004-11-25 13:50:01 +0000379 AC_MSG_CHECKING([for Tcl configuration])
380 AC_CACHE_VAL(ac_cv_c_tclconfig,[
381 # First check to see if --with-tcl was specified.
382 if test x"${with_tclconfig}" != x ; then
383 if test -f "${with_tclconfig}/tclConfig.sh" ; then
384 ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
385 else
386 AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
387 fi
drh71eb93e2001-09-28 01:34:43 +0000388 fi
vapierfe7e82e2009-01-26 21:39:33 +0000389
390 # Start autosearch by asking tclsh
391 if test x"$cross_compiling" = xno; then
392 for i in `echo 'puts stdout $auto_path' | ${TCLSH_CMD}`
393 do
394 if test -f "$i/tclConfig.sh" ; then
395 ac_cv_c_tclconfig="$i"
396 break
397 fi
398 done
399 fi
400
drh7b5717e2004-11-25 13:50:01 +0000401 # then check for a private Tcl installation
402 if test x"${ac_cv_c_tclconfig}" = x ; then
403 for i in \
404 ../tcl \
405 `ls -dr ../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
406 `ls -dr ../tcl[[8-9]].[[0-9]] 2>/dev/null` \
407 `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
408 ../../tcl \
409 `ls -dr ../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
410 `ls -dr ../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
411 `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
412 ../../../tcl \
413 `ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
414 `ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
415 `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null`
416 do
417 if test -f "$i/unix/tclConfig.sh" ; then
418 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
419 break
420 fi
421 done
422 fi
423
424 # check in a few common install locations
425 if test x"${ac_cv_c_tclconfig}" = x ; then
426 for i in \
427 `ls -d ${libdir} 2>/dev/null` \
428 `ls -d /usr/local/lib 2>/dev/null` \
429 `ls -d /usr/contrib/lib 2>/dev/null` \
430 `ls -d /usr/lib 2>/dev/null`
431 do
432 if test -f "$i/tclConfig.sh" ; then
433 ac_cv_c_tclconfig=`(cd $i; pwd)`
434 break
435 fi
436 done
437 fi
438
439 # check in a few other private locations
440 if test x"${ac_cv_c_tclconfig}" = x ; then
441 for i in \
442 ${srcdir}/../tcl \
443 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
444 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \
445 `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null`
446 do
447 if test -f "$i/unix/tclConfig.sh" ; then
448 ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
449 break
450 fi
451 done
452 fi
453 ])
454
455 if test x"${ac_cv_c_tclconfig}" = x ; then
456 use_tcl=no
457 AC_MSG_WARN(Can't find Tcl configuration definitions)
458 AC_MSG_WARN(*** Without Tcl the regression tests cannot be executed ***)
459 AC_MSG_WARN(*** Consider using --with-tcl=... to define location of Tcl ***)
460 else
461 TCL_BIN_DIR=${ac_cv_c_tclconfig}
462 AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)
463
464 AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh])
465 if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then
466 AC_MSG_RESULT([loading])
467 . $TCL_BIN_DIR/tclConfig.sh
468 else
469 AC_MSG_RESULT([file not found])
470 fi
471
472 #
473 # If the TCL_BIN_DIR is the build directory (not the install directory),
474 # then set the common variable name to the value of the build variables.
475 # For example, the variable TCL_LIB_SPEC will be set to the value
476 # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC
477 # instead of TCL_BUILD_LIB_SPEC since it will work with both an
478 # installed and uninstalled version of Tcl.
479 #
480
mlcreechab1c47b2008-03-09 02:51:10 +0000481 if test -f $TCL_BIN_DIR/Makefile ; then
drh7b5717e2004-11-25 13:50:01 +0000482 TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC}
483 TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC}
484 TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH}
485 fi
486
487 #
488 # eval is required to do the TCL_DBGX substitution
489 #
490
491 eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\""
492 eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\""
493 eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\""
494
495 eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\""
496 eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\""
497 eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\""
498
499 AC_SUBST(TCL_VERSION)
500 AC_SUBST(TCL_BIN_DIR)
501 AC_SUBST(TCL_SRC_DIR)
502 AC_SUBST(TCL_LIBS)
503 AC_SUBST(TCL_INCLUDE_SPEC)
504
505 AC_SUBST(TCL_LIB_FILE)
506 AC_SUBST(TCL_LIB_FLAG)
507 AC_SUBST(TCL_LIB_SPEC)
508
509 AC_SUBST(TCL_STUB_LIB_FILE)
510 AC_SUBST(TCL_STUB_LIB_FLAG)
511 AC_SUBST(TCL_STUB_LIB_SPEC)
512 fi
drh71eb93e2001-09-28 01:34:43 +0000513fi
drh7b5717e2004-11-25 13:50:01 +0000514if test "${use_tcl}" = "no" ; then
515 HAVE_TCL=""
516else
517 HAVE_TCL=1
drh71eb93e2001-09-28 01:34:43 +0000518fi
drh7b5717e2004-11-25 13:50:01 +0000519AC_SUBST(HAVE_TCL)
drh71eb93e2001-09-28 01:34:43 +0000520
521##########
522# Figure out what C libraries are required to compile programs
523# that use "readline()" library.
524#
vapier4c10a8a2007-02-17 14:28:26 +0000525TARGET_READLINE_LIBS=""
526TARGET_READLINE_INC=""
527TARGET_HAVE_READLINE=0
528AC_ARG_ENABLE([readline],
529 [AC_HELP_STRING([--disable-readline],[disable readline support [default=detect]])],
530 [with_readline=$enableval],
531 [with_readline=auto])
532
533if test x"$with_readline" != xno; then
534 found="yes"
535
536 AC_ARG_WITH([readline-lib],
537 [AC_HELP_STRING([--with-readline-lib],[specify readline library])],
538 [with_readline_lib=$withval],
539 [with_readline_lib="auto"])
540 if test "x$with_readline_lib" = xauto; then
541 save_LIBS="$LIBS"
542 LIBS=""
543 AC_SEARCH_LIBS(tgetent, [readline ncurses curses termcap], [term_LIBS="$LIBS"], [term_LIBS=""])
544 AC_CHECK_LIB([readline], [readline], [TARGET_READLINE_LIBS="-lreadline"], [found="no"])
545 TARGET_READLINE_LIBS="$TARGET_READLINE_LIBS $term_LIBS"
546 LIBS="$save_LIBS"
547 else
548 TARGET_READLINE_LIBS="$with_readline_lib"
549 fi
550
551 AC_ARG_WITH([readline-inc],
552 [AC_HELP_STRING([--with-readline-inc],[specify readline include paths])],
553 [with_readline_inc=$withval],
554 [with_readline_inc="auto"])
555 if test "x$with_readline_inc" = xauto; then
556 AC_CHECK_HEADER(readline.h, [found="yes"], [
557 found="no"
558 if test "$cross_compiling" != yes; then
559 for dir in /usr /usr/local /usr/local/readline /usr/contrib /mingw; do
560 for subdir in include include/readline; do
561 AC_CHECK_FILE($dir/$subdir/readline.h, found=yes)
562 if test "$found" = "yes"; then
563 TARGET_READLINE_INC="-I$dir/$subdir"
564 break
565 fi
566 done
567 test "$found" = "yes" && break
568 done
569 fi
570 ])
571 else
572 TARGET_READLINE_INC="$with_readline_inc"
573 fi
574
575 if test x"$found" = xno; then
576 TARGET_READLINE_LIBS=""
577 TARGET_READLINE_INC=""
578 TARGET_HAVE_READLINE=0
579 else
580 TARGET_HAVE_READLINE=1
581 fi
drh71eb93e2001-09-28 01:34:43 +0000582fi
vapier4c10a8a2007-02-17 14:28:26 +0000583
drh71eb93e2001-09-28 01:34:43 +0000584AC_SUBST(TARGET_READLINE_LIBS)
vapier4c10a8a2007-02-17 14:28:26 +0000585AC_SUBST(TARGET_READLINE_INC)
586AC_SUBST(TARGET_HAVE_READLINE)
drh71eb93e2001-09-28 01:34:43 +0000587
588##########
drhf1878b42006-01-23 18:06:52 +0000589# Figure out what C libraries are required to compile programs
590# that use "fdatasync()" function.
591#
drhf1878b42006-01-23 18:06:52 +0000592AC_SEARCH_LIBS(fdatasync, [rt])
drhf1878b42006-01-23 18:06:52 +0000593
drh71eb93e2001-09-28 01:34:43 +0000594#########
tpoindex9d9f76c2005-01-03 21:28:56 +0000595# check for debug enabled
drh94e4f822006-02-15 02:00:25 +0000596AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],[enable debugging & verbose explain]),
tpoindex9d9f76c2005-01-03 21:28:56 +0000597 [use_debug=$enableval],[use_debug=no])
598if test "${use_debug}" = "yes" ; then
drheae3a0d2006-03-03 20:37:52 +0000599 TARGET_DEBUG="-DSQLITE_DEBUG=1"
tpoindex9d9f76c2005-01-03 21:28:56 +0000600else
601 TARGET_DEBUG="-DNDEBUG"
602fi
603AC_SUBST(TARGET_DEBUG)
604
605#########
mlcreech94984912008-03-04 19:03:08 +0000606# See whether we should use the amalgamation to build
607AC_ARG_ENABLE(amalgamation, AC_HELP_STRING([--disable-amalgamation],
mlcreech969b2cd2008-03-14 04:11:03 +0000608 [Disable the amalgamation and instead build all files separately]),
mlcreech94984912008-03-04 19:03:08 +0000609 [use_amalgamation=$enableval],[use_amalgamation=yes])
mlcreechf3868112008-03-11 18:03:30 +0000610if test "${use_amalgamation}" != "yes" ; then
mlcreech94984912008-03-04 19:03:08 +0000611 USE_AMALGAMATION=0
612fi
613AC_SUBST(USE_AMALGAMATION)
614
615#########
mlcreecha4edab02008-03-06 04:14:17 +0000616# See whether we should allow loadable extensions
617AC_ARG_ENABLE(load-extension, AC_HELP_STRING([--enable-load-extension],
618 [Enable loading of external extensions]),
619 [use_loadextension=$enableval],[use_loadextension=no])
620if test "${use_loadextension}" = "yes" ; then
shanefbedede2008-07-22 05:05:01 +0000621 OPT_FEATURE_FLAGS=""
drhdbe4b882011-06-20 18:00:17 +0000622 AC_SEARCH_LIBS(dlopen, dl)
mlcreecha4edab02008-03-06 04:14:17 +0000623else
shanefbedede2008-07-22 05:05:01 +0000624 OPT_FEATURE_FLAGS="-DSQLITE_OMIT_LOAD_EXTENSION=1"
mlcreecha4edab02008-03-06 04:14:17 +0000625fi
mlcreecha4edab02008-03-06 04:14:17 +0000626
mlcreechaac7b932008-04-01 02:45:22 +0000627#########
shaneb1cd7302008-10-22 18:27:31 +0000628# attempt to duplicate any OMITS and ENABLES into the $(OPT_FEATURE_FLAGS) parameter
shanefbedede2008-07-22 05:05:01 +0000629for option in $CFLAGS $CPPFLAGS
630do
631 case $option in
danielk197733a14782008-08-04 14:50:05 +0000632 -DSQLITE_OMIT*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
shaneb1cd7302008-10-22 18:27:31 +0000633 -DSQLITE_ENABLE*) OPT_FEATURE_FLAGS="$OPT_FEATURE_FLAGS $option";;
shanefbedede2008-07-22 05:05:01 +0000634 esac
635done
636AC_SUBST(OPT_FEATURE_FLAGS)
637
638
shaneb1cd7302008-10-22 18:27:31 +0000639# attempt to remove any OMITS and ENABLES from the $(CFLAGS) parameter
shanefbedede2008-07-22 05:05:01 +0000640ac_temp_CFLAGS=""
641for option in $CFLAGS
642do
643 case $option in
644 -DSQLITE_OMIT*) ;;
shaneb1cd7302008-10-22 18:27:31 +0000645 -DSQLITE_ENABLE*) ;;
danielk197733a14782008-08-04 14:50:05 +0000646 *) ac_temp_CFLAGS="$ac_temp_CFLAGS $option";;
shanefbedede2008-07-22 05:05:01 +0000647 esac
648done
649CFLAGS=$ac_temp_CFLAGS
650
651
shaneb1cd7302008-10-22 18:27:31 +0000652# attempt to remove any OMITS and ENABLES from the $(CPPFLAGS) parameter
shanefbedede2008-07-22 05:05:01 +0000653ac_temp_CPPFLAGS=""
654for option in $CPPFLAGS
655do
656 case $option in
657 -DSQLITE_OMIT*) ;;
shaneb1cd7302008-10-22 18:27:31 +0000658 -DSQLITE_ENABLE*) ;;
danielk197733a14782008-08-04 14:50:05 +0000659 *) ac_temp_CPPFLAGS="$ac_temp_CPPFLAGS $option";;
shanefbedede2008-07-22 05:05:01 +0000660 esac
661done
662CPPFLAGS=$ac_temp_CPPFLAGS
663
664
shaneb1cd7302008-10-22 18:27:31 +0000665# attempt to remove any OMITS and ENABLES from the $(BUILD_CFLAGS) parameter
shanefbedede2008-07-22 05:05:01 +0000666ac_temp_BUILD_CFLAGS=""
667for option in $BUILD_CFLAGS
668do
669 case $option in
670 -DSQLITE_OMIT*) ;;
shaneb1cd7302008-10-22 18:27:31 +0000671 -DSQLITE_ENABLE*) ;;
danielk197733a14782008-08-04 14:50:05 +0000672 *) ac_temp_BUILD_CFLAGS="$ac_temp_BUILD_CFLAGS $option";;
shanefbedede2008-07-22 05:05:01 +0000673 esac
674done
675BUILD_CFLAGS=$ac_temp_BUILD_CFLAGS
676
677
678#########
679# See whether we should use GCOV
mlcreechaac7b932008-04-01 02:45:22 +0000680AC_ARG_ENABLE(gcov, AC_HELP_STRING([--enable-gcov],
681 [Enable coverage testing using gcov]),
682 [use_gcov=$enableval],[use_gcov=no])
683if test "${use_gcov}" = "yes" ; then
684 USE_GCOV=1
685else
686 USE_GCOV=0
687fi
688AC_SUBST(USE_GCOV)
689
drhaf6edf52005-10-04 18:38:49 +0000690
drh71eb93e2001-09-28 01:34:43 +0000691#########
mlcreechb87057f2008-03-06 07:19:20 +0000692# Output the config header
mlcreech23797062008-03-20 02:25:35 +0000693AC_CONFIG_HEADERS(config.h)
mlcreechb87057f2008-03-06 07:19:20 +0000694
695#########
drh71eb93e2001-09-28 01:34:43 +0000696# Generate the output files.
697#
mlcreech8390bc32008-03-06 08:54:38 +0000698AC_SUBST(BUILD_CFLAGS)
a.rottmannc7e93832003-03-24 09:39:32 +0000699AC_OUTPUT([
700Makefile
dougcurrie12b34442004-07-19 03:24:59 +0000701sqlite3.pc
a.rottmannc7e93832003-03-24 09:39:32 +0000702])