dbus configure.in,1.90,1.91 ChangeLog,1.538,1.539
Olivier Andrieu
oandrieu at freedesktop.org
Thu Jul 29 01:00:48 PDT 2004
Update of /cvs/dbus/dbus
In directory pdx:/tmp/cvs-serv9454
Modified Files:
configure.in ChangeLog
Log Message:
* bus/config-loader-libxml.c: complete the implementation of libxml
backend for config file loader. Doesn't work with full OOM test yet.
* configure.in: change error when selecting libxml into a warning.
* test/data/invalid-config-files: add two non-well-formed XML files.
* glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
* dbus/dbus-transport-unix.c (unix_handle_watch): do not disconnect in
case of DBUS_WATCH_HANGUP, several do_reading() may be necessary to
read all the buffer. (bug #894)
* bus/activation.c (bus_activation_activate_service): fix a potential
assertion failure (bug #896). Small optimization in the case of
auto-activation messages.
* dbus/dbus-message.c (verify_test_message, _dbus_message_test): add
test case for byte-through-vararg bug (#901). patch by Kimmo
Hämäläinen.
Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -d -r1.90 -r1.91
--- configure.in 22 Jul 2004 07:07:51 -0000 1.90
+++ configure.in 29 Jul 2004 08:00:45 -0000 1.91
@@ -673,10 +673,11 @@
fi
if $dbus_use_libxml ; then
- dnl libxml loader is broken
- AC_MSG_ERROR([libxml loader is broken ATM, use the expat loader])
+ dnl libxml OOM handling is a bit broken
+ AC_MSG_WARN([libxml loader is not as robust as the expat one wrt. OOM handling])
fi
+
AM_CONDITIONAL(DBUS_USE_EXPAT, $dbus_use_expat)
AM_CONDITIONAL(DBUS_USE_LIBXML, $dbus_use_libxml)
Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.538
retrieving revision 1.539
diff -u -d -r1.538 -r1.539
--- ChangeLog 28 Jul 2004 18:14:55 -0000 1.538
+++ ChangeLog 29 Jul 2004 08:00:45 -0000 1.539
@@ -1,3 +1,28 @@
+2004-07-29 Olivier Andrieu <oliv__a at users.sourceforge.net>
+
+ * bus/config-loader-libxml.c: complete the implementation of
+ libxml backend for config file loader. Doesn't work with full OOM
+ test yet.
+
+ * configure.in: change error when selecting libxml into a warning.
+
+ * test/data/invalid-config-files: add two non-well-formed XML
+ files.
+
+ * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
+
+ * dbus/dbus-transport-unix.c (unix_handle_watch): do not
+ disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
+ be necessary to read all the buffer. (bug #894)
+
+ * bus/activation.c (bus_activation_activate_service): fix a
+ potential assertion failure (bug #896). Small optimization in the
+ case of auto-activation messages.
+
+ * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
+ add test case for byte-through-vararg bug (#901). patch by Kimmo
+ Hämäläinen.
+
2004-07-28 Anders Carlsson <andersca at gnome.org>
* python/dbus.py:
More information about the dbus-commit
mailing list