summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2008-01-14 15:53:13 -0500
committerJohn (J5) Palmieri <johnp@redhat.com>2008-01-14 15:53:13 -0500
commit93e8a272d71953267043e85c29d971cec36aa5b0 (patch)
treeb51cf9389feb5b6beabf3bc904ef9057896e9181 /configure.in
parentede4e4514698612e226763ea8b6ae8ce13f2173d (diff)
add warning to output when libxml is selected
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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index fccb1373..53b8a038 100644
--- a/configure.in
+++ b/configure.in
@@ -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