summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2005-06-05 04:27:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:37 -0500
commit03840652354598db203a3596077ecc55726880c8 (patch)
tree86aed2319db611e6802b40e7747c05f391dd320e /source4
parentc88d65a862cefe832f3b5f38844829372a926e33 (diff)
downloadsamba-03840652354598db203a3596077ecc55726880c8.tar.gz
samba-03840652354598db203a3596077ecc55726880c8.tar.bz2
samba-03840652354598db203a3596077ecc55726880c8.zip
r7293: Turn sqlite3 support off by default, use --with-sqlite3 to re-enable.
Andrew Bartlett (This used to be commit 422579215462c31dd863ab1b7f187003dafd0af2)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb/sqlite3.m47
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/lib/ldb/sqlite3.m4 b/source4/lib/ldb/sqlite3.m4
index fe0f398624..ab7c61f243 100644
--- a/source4/lib/ldb/sqlite3.m4
+++ b/source4/lib/ldb/sqlite3.m4
@@ -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)