]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
add warning to output when libxml is selected
authorJohn (J5) Palmieri <johnp@redhat.com>
Mon, 14 Jan 2008 20:53:13 +0000 (15:53 -0500)
committerJohn (J5) Palmieri <johnp@redhat.com>
Mon, 14 Jan 2008 20:53:13 +0000 (15:53 -0500)
2008-01-14  John (J5) Palmieri  <johnp@redhat.com>

* configure.in: add warning to output when libxml is selected since
we don't have a libxml maintainer and expat works perfectly fine
for what we need an xml parser for

ChangeLog
configure.in

index 8c30e1027975d4f57fe7ace6371b4f6f7ec3d4f6..a458d00c46dfeef0be85321fbb997c6af919a56a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-01-14  John (J5) Palmieri  <johnp@redhat.com>
+
+       * configure.in: add warning to output when libxml is selected since
+       we don't have a libxml maintainer and expat works perfectly fine
+       for what we need an xml parser for
+
 2008-01-14  John (J5) Palmieri  <johnp@redhat.com>
 
        * Patch by Andrea Luzzardi  <scox at sig11 dot org>: creates a
index fccb1373c6e7e1fe7236df84ed1543dcaacc29c0..53b8a0382d80af91e50d336e5c07b3352647d66b 100644 (file)
@@ -1361,3 +1361,7 @@ fi
 if test x$enable_checks = xno; then
         echo "NOTE: building without checks for arguments passed to public API makes it harder to debug apps using D-Bus, but will slightly decrease D-Bus library size and _very_ slightly improve performance."
 fi
+if test x$dbus_use_libxml = xtrue; then
+        echo
+       echo "WARNING: You have chosen to use libxml as your xml parser however this code path is not maintained by the D-Bus developers and if it breaks you get to keep the pieces.  If you have selected this option in err please reconfigure with expat (e.g. --with-xml=expat)."
+fi