dbus ChangeLog,1.1074,1.1075 configure.in,1.165,1.166

John Palmieri johnp at kemper.freedesktop.org
Thu Aug 10 14:22:35 PDT 2006


Update of /cvs/dbus/dbus
In directory kemper:/tmp/cvs-serv5387

Modified Files:
	ChangeLog configure.in 
Log Message:
* configure.in: add a version (>= 2.6.0) check for libxml2


Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.1074
retrieving revision 1.1075
diff -u -d -r1.1074 -r1.1075
--- ChangeLog	10 Aug 2006 21:00:30 -0000	1.1074
+++ ChangeLog	10 Aug 2006 21:22:32 -0000	1.1075
@@ -1,5 +1,9 @@
 2006-08-10  John (J5) Palmieri  <johnp at redhat.com>
 
+	* configure.in: add a version (>= 2.6.0) check for libxml2
+
+2006-08-10  John (J5) Palmieri  <johnp at redhat.com>
+
 	* configure.in: make sure the compiler supports -Wfloat-equal
 	
 	* bus/dir-watch-dnotify.c: move functional code after 

Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -d -r1.165 -r1.166
--- configure.in	10 Aug 2006 21:00:30 -0000	1.165
+++ configure.in	10 Aug 2006 21:22:33 -0000	1.166
@@ -619,7 +619,7 @@
              [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ],
              have_expat=false)
 
-PKG_CHECK_MODULES(LIBXML, libxml-2.0, have_libxml=true, have_libxml=false)
+PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= 2.6.0, have_libxml=true, have_libxml=false)
 
 # see what we want to use
 dbus_use_libxml=false
@@ -632,7 +632,7 @@
 elif test x$with_xml = xlibxml; then
         dbus_use_libxml=true
         if ! $have_libxml ; then
-           AC_MSG_ERROR([Explicitly requested libxml but libxml not found])
+           AC_MSG_ERROR([Explicitly requested libxml but libxml >= 2.6.0 not found])
         fi
 else
         ### expat is the default because libxml can't currently survive 



More information about the dbus-commit mailing list