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

metze at samba.org metze at samba.org
Mon Jun 6 13:36:03 GMT 2005


Author: metze
Date: 2005-06-06 13:36:02 +0000 (Mon, 06 Jun 2005)
New Revision: 7336

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

Log:
make --with-sqlite3=auto possible

metze
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-06 13:30:45 UTC (rev 7335)
+++ branches/SAMBA_4_0/source/lib/ldb/sqlite3.m4	2005-06-06 13:36:02 UTC (rev 7336)
@@ -2,22 +2,20 @@
 # Compile with SQLITE3 support?
 
 SQLITE3_LIBS=""
-with_sqlite3_support=auto
+with_sqlite3_support=no
 AC_MSG_CHECKING([for SQLITE3 support])
 
 AC_ARG_WITH(sqlite3,
-[  --with-sqlite3          SQLITE3 support (default no)],
+[  --with-sqlite3          SQLITE3 support (default=no)],
 [ case "$withval" in
-    yes|no)
+    yes|no|auto)
 	with_sqlite3_support=$withval
 	;;
   esac ])
 
 AC_MSG_RESULT($with_sqlite3_support)
 
-if test x"$with_sqlite3_support" != x"yes"; then
-	with_sqlite3_support=no
-else
+if test x"$with_sqlite3_support" != x"no"; then
   ##################################################################
   # first test for sqlite3.h
   AC_CHECK_HEADERS(sqlite3.h)



More information about the samba-cvs mailing list