svn commit: samba r24997 - in branches/SAMBA_4_0: . source source/build/m4

jelmer at samba.org jelmer at samba.org
Fri Sep 7 14:25:06 GMT 2007


Author: jelmer
Date: 2007-09-07 14:25:03 +0000 (Fri, 07 Sep 2007)
New Revision: 24997

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

Log:
Re-enable use of system-provided tdb and/or talloc when available.
Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/build/m4/public.m4
   branches/SAMBA_4_0/source/configure.ac


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: bzr:revision-info
...skipped...
Name: bzr:revision-id:v3-trunk0
...skipped...

Modified: branches/SAMBA_4_0/source/build/m4/public.m4
===================================================================
--- branches/SAMBA_4_0/source/build/m4/public.m4	2007-09-07 13:54:56 UTC (rev 24996)
+++ branches/SAMBA_4_0/source/build/m4/public.m4	2007-09-07 14:25:03 UTC (rev 24997)
@@ -68,20 +68,13 @@
     		echo "*** in your path, or set the PKG_CONFIG environment variable"
     		echo "*** to the full path to pkg-config."
     		echo "*** Or see http://pkg-config.freedesktop.org/ to get pkg-config."
-		SMB_EXT_LIB($1)
-		SMB_ENABLE($1, NO)
-		$4
-
+			ac_cv_$1_found=no
 	else
 		if $PKG_CONFIG --atleast-pkgconfig-version 0.9.0; then
         		AC_MSG_CHECKING(for $2)
 
-          		if test "$SMB_$1"x = "NO"x ; then
-				SMB_ENABLE($1, NO)
-				AC_MSG_RESULT(disabled)		
-				$4
-          		elif $PKG_CONFIG --exists '$2' ; then
-            			AC_MSG_RESULT(yes)
+          		if $PKG_CONFIG --exists '$2' ; then
+				AC_MSG_RESULT(yes)
 
 
 				$1_CFLAGS="`$PKG_CONFIG --cflags '$2'`"
@@ -101,23 +94,27 @@
 					[`$PKG_CONFIG --cflags-only-other '$2'`],
 					[`$PKG_CONFIG --cflags-only-I '$2'`],
 					[`$PKG_CONFIG --libs-only-other '$2'` `$PKG_CONFIG --libs-only-L '$2'`])
-				$3
+				ac_cv_$1_found=yes
 
         		else
-				SMB_EXT_LIB($1)
-				SMB_ENABLE($1, NO)
 				AC_MSG_RESULT(no)
             			$PKG_CONFIG --errors-to-stdout --print-errors '$2'
-				$4
+				ac_cv_$1_found=no
         		fi
      		else
         		echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
         			echo "*** See http://pkg-config.freedesktop.org/"
-				SMB_EXT_LIB($1)
-				SMB_ENABLE($1, NO)
-				$4
+				ac_cv_$1_found=no
      		fi
   	fi
+	if test x$ac_cv_$1_found = x"yes"; then
+		ifelse([$3], [], [echo -n ""], [$3])
+	else
+		ifelse([$4], [], [
+			  SMB_EXT_LIB($1)
+			  SMB_ENABLE($1, NO)
+		], [$4])
+	fi
 ])
 
 dnl SMB_INCLUDE_MK(file)

Modified: branches/SAMBA_4_0/source/configure.ac
===================================================================
--- branches/SAMBA_4_0/source/configure.ac	2007-09-07 13:54:56 UTC (rev 24996)
+++ branches/SAMBA_4_0/source/configure.ac	2007-09-07 14:25:03 UTC (rev 24997)
@@ -27,23 +27,21 @@
 m4_include(lib/socket/config.m4)
 m4_include(nsswitch/nsstest.m4)
 
-#SMB_EXT_LIB_FROM_PKGCONFIG(LIBTALLOC, talloc >= 1.0,
-#			   [samba_cv_internal_talloc=no],
-#			   [samba_cv_internal_talloc=yes])
-samba_cv_internal_talloc=yes
-if test x"$samba_cv_internal_talloc" = x"yes"; then
-	m4_include(lib/talloc/libtalloc.m4)
-	SMB_INCLUDE_MK(lib/talloc/config.mk)
-fi
+SMB_EXT_LIB_FROM_PKGCONFIG(LIBTALLOC, talloc >= 1.0,
+	[],
+	[
+		m4_include(lib/talloc/libtalloc.m4)
+		SMB_INCLUDE_MK(lib/talloc/config.mk)
+	]
+)
 
-#SMB_EXT_LIB_FROM_PKGCONFIG(LIBTDB, tdb >= 1.1.0,
-#			   [samba_cv_internal_tdb=no],
-#			   [samba_cv_internal_tdb=yes])
-samba_cv_internal_tdb=yes
-if test x"$samba_cv_internal_tdb" = x"yes"; then
-	m4_include(lib/tdb/libtdb.m4)
-	SMB_INCLUDE_MK(lib/tdb/config.mk)
-fi
+SMB_EXT_LIB_FROM_PKGCONFIG(LIBTDB, tdb >= 1.1.0,
+	[],
+	[
+		m4_include(lib/tdb/libtdb.m4)
+		SMB_INCLUDE_MK(lib/tdb/config.mk)
+	]
+)
 
 m4_include(lib/ldb/sqlite3.m4)
 m4_include(lib/ldb/libldb.m4)



More information about the samba-cvs mailing list