dbus ChangeLog, 1.675, 1.676 autogen.sh, 1.5, 1.6 configure.in, 1.106, 1.107

Havoc Pennington hp at freedesktop.org
Sun Jan 30 18:55:14 PST 2005


Update of /cvs/dbus/dbus
In directory gabe:/tmp/cvs-serv30297

Modified Files:
	ChangeLog autogen.sh configure.in 
Log Message:
2005-01-30  Havoc Pennington  <hp at redhat.com>

	* tools/dbus-names-model.c: dynamically watch NameOwnerChanged

	* autogen.sh: change to autotools 1.9

	* glib/dbus-gproxy.c: completely change how signals work
	(dbus_g_proxy_add_signal): new function to specify signature of a
	signal
	(dbus_g_proxy_emit_received): marshal the dbus message to GValues,
	and g_warning if the incoming message has the wrong signature.



Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.675
retrieving revision 1.676
diff -u -d -r1.675 -r1.676
--- ChangeLog	30 Jan 2005 23:29:50 -0000	1.675
+++ ChangeLog	31 Jan 2005 02:55:12 -0000	1.676
@@ -1,5 +1,17 @@
 2005-01-30  Havoc Pennington  <hp at redhat.com>
 
+	* tools/dbus-names-model.c: dynamically watch NameOwnerChanged
+
+	* autogen.sh: change to autotools 1.9
+
+	* glib/dbus-gproxy.c: completely change how signals work
+	(dbus_g_proxy_add_signal): new function to specify signature of a
+	signal
+	(dbus_g_proxy_emit_received): marshal the dbus message to GValues,
+	and g_warning if the incoming message has the wrong signature.
+
+2005-01-30  Havoc Pennington  <hp at redhat.com>
+
 	* tools/dbus-names-model.c (have_names_notify): fix this
 
 	* dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean

Index: autogen.sh
===================================================================
RCS file: /cvs/dbus/dbus/autogen.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- autogen.sh	15 May 2003 19:59:19 -0000	1.5
+++ autogen.sh	31 Jan 2005 02:55:12 -0000	1.6
@@ -21,8 +21,8 @@
 	DIE=1
 }
 
-AUTOMAKE=automake-1.7
-ACLOCAL=aclocal-1.7
+AUTOMAKE=automake-1.9
+ACLOCAL=aclocal-1.9
 
 ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
         AUTOMAKE=automake

Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- configure.in	30 Jan 2005 07:44:08 -0000	1.106
+++ configure.in	31 Jan 2005 02:55:12 -0000	1.107
@@ -819,6 +819,13 @@
 AM_CONDITIONAL(HAVE_GLIB, test x$have_glib = xyes)
 AM_CONDITIONAL(HAVE_GLIB_THREADS, test x$have_glib_threads = xyes)
 
+if test x$have_glib = xyes; then
+   GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
+else
+   GLIB_GENMARSHAL=glib-not-enabled-so-there-is-no-genmarshal
+fi
+AC_SUBST(GLIB_GENMARSHAL)
+
 dnl GLib flags
 AC_SUBST(DBUS_GLIB_CFLAGS)
 AC_SUBST(DBUS_GLIB_LIBS)



More information about the dbus-commit mailing list