svn commit: samba r7293 - in branches/SAMBA_4_0/source/lib/ldb: .

abartlet at samba.org abartlet at samba.org
Sun Jun 5 04:27:12 GMT 2005


Author: abartlet
Date: 2005-06-05 04:27:12 +0000 (Sun, 05 Jun 2005)
New Revision: 7293

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7293

Log:
Turn sqlite3 support off by default, use --with-sqlite3 to re-enable.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/lib/ldb/sqlite3.m4


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/sqlite3.m4
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/sqlite3.m4	2005-06-05 04:18:57 UTC (rev 7292)
+++ branches/SAMBA_4_0/source/lib/ldb/sqlite3.m4	2005-06-05 04:27:12 UTC (rev 7293)
@@ -6,7 +6,7 @@
 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_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)



More information about the samba-cvs mailing list