r7293: Turn sqlite3 support off by default, use --with-sqlite3 to re-enable.
authorAndrew Bartlett <abartlet@samba.org>
Sun, 5 Jun 2005 04:27:12 +0000 (04:27 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:17:37 +0000 (13:17 -0500)
Andrew Bartlett
(This used to be commit 422579215462c31dd863ab1b7f187003dafd0af2)

source4/lib/ldb/sqlite3.m4

index fe0f398624addbca20fdaa9bc261a2100dcb775d..ab7c61f2437ca4a8e4c15568aad0f52dd3d905f3 100644 (file)
@@ -6,7 +6,7 @@ with_sqlite3_support=auto
 AC_MSG_CHECKING([for SQLITE3 support])
 
 AC_ARG_WITH(sqlite3,
-[  --with-sqlite3          SQLITE3 support (default yes)],
+[  --with-sqlite3          SQLITE3 support (default no)],
 [ case "$withval" in
     yes|no)
        with_sqlite3_support=$withval
@@ -15,8 +15,9 @@ AC_ARG_WITH(sqlite3,
 
 AC_MSG_RESULT($with_sqlite3_support)
 
-if test x"$with_sqlite3_support" != x"no"; then
-
+if test x"$with_sqlite3_support" != x"yes"; then
+       with_sqlite3_support=no
+else
   ##################################################################
   # first test for sqlite3.h
   AC_CHECK_HEADERS(sqlite3.h)