From 03840652354598db203a3596077ecc55726880c8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 5 Jun 2005 04:27:12 +0000 Subject: r7293: Turn sqlite3 support off by default, use --with-sqlite3 to re-enable. Andrew Bartlett (This used to be commit 422579215462c31dd863ab1b7f187003dafd0af2) --- source4/lib/ldb/sqlite3.m4 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source4/lib/ldb/sqlite3.m4') 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) -- cgit