dbus ChangeLog,1.1060,1.1061 configure.in,1.160,1.161

John Palmieri johnp at kemper.freedesktop.org
Fri Aug 4 09:15:18 PDT 2006


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

Modified Files:
	ChangeLog configure.in 
Log Message:
* configure.in: add -Wdeclaration-after-statement

* dbus/dbus-connection.c: change all the pending call stuff to
  reflect the fact that pending call operations use the connection
  lock

* dbus/dbus-pending-call.c: add locking here

* dbus/dbus-errors.c (struct DBusRealError): don't make the name
  field const consistent with how message field is done


Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.1060
retrieving revision 1.1061
diff -u -d -r1.1060 -r1.1061
--- ChangeLog	3 Aug 2006 20:34:36 -0000	1.1060
+++ ChangeLog	4 Aug 2006 16:15:16 -0000	1.1061
@@ -1,3 +1,16 @@
+2006-08-04  Havoc Pennington  <hp at redhat.com>
+
+	* configure.in: add -Wdeclaration-after-statement
+
+	* dbus/dbus-connection.c: change all the pending call stuff to
+	reflect the fact that pending call operations use the connection
+	lock
+
+	* dbus/dbus-pending-call.c: add locking here
+
+	* dbus/dbus-errors.c (struct DBusRealError): don't make the name
+	field const consistent with how message field is done
+
 2006-08-03  John (J5) Palmieri  <johnp at redhat.com>
 
 	* s/D-BUS/D-Bus/g

Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -d -r1.160 -r1.161
--- configure.in	3 Aug 2006 20:34:36 -0000	1.160
+++ configure.in	4 Aug 2006 16:15:16 -0000	1.161
@@ -138,6 +138,11 @@
   *) CFLAGS="$CFLAGS -Wsign-compare" ;;
   esac
 
+  case " $CFLAGS " in
+  *[\ \	]-Wdeclaration-after-statement[\ \	]*) ;;
+  *) CFLAGS="$CFLAGS -Wdeclaration-after-statement" ;;
+  esac
+
   if test "x$enable_ansi" = "xyes"; then
     case " $CFLAGS " in
     *[\ \	]-ansi[\ \	]*) ;;



More information about the dbus-commit mailing list