dbus ChangeLog, 1.1148, 1.1149 NEWS, 1.35, 1.36 configure.in, 1.188, 1.189

John Palmieri johnp at kemper.freedesktop.org
Sat Oct 14 10:38:58 PDT 2006


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

Modified Files:
	ChangeLog NEWS configure.in 
Log Message:
* configure.in: Released 1.0 RC 2(0.94)
  Add check for -fPIC and enable it if available


Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.1148
retrieving revision 1.1149
diff -u -d -r1.1148 -r1.1149
--- ChangeLog	14 Oct 2006 16:25:53 -0000	1.1148
+++ ChangeLog	14 Oct 2006 17:38:56 -0000	1.1149
@@ -1,5 +1,10 @@
 2006-10-14  John (J5) Palmieri  <johnp at redhat.com>
 
+	* configure.in: Released 1.0 RC 2(0.94)
+	Add check for -fPIC and enable it if available
+
+2006-10-14  John (J5) Palmieri  <johnp at redhat.com>
+
 	* doc/TODO: Remove the check TODO item
 
 2006-10-13  John (J5) Palmieri  <johnp at redhat.com>

Index: NEWS
===================================================================
RCS file: /cvs/dbus/dbus/NEWS,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- NEWS	14 Sep 2006 05:46:22 -0000	1.35
+++ NEWS	14 Oct 2006 17:38:56 -0000	1.36
@@ -1,3 +1,27 @@
+D-Bus 1.0 RC 2 (0.94) (14 October 2006)
+==
+- dbus-uuidgen binary added for future remote machine identification
+  packagers should call dbus-uuidgen --ensure in their post
+- GetMachineId peer method added to the bus API
+- dbus_connection_set_route_peer_messages API added to let the bus send
+  peer messages directly to an app
+- Autolaunch abilities added to dbus-launch with the --autolaunch flag
+  This feature allows libdbus to start a session bus if none can be found
+  This is an internal feature and should not be used by scripts
+  DBUS_SESSION_BUS_ADDRESS is still the correct way to specify a session bus
+- dbus-launch now prints out a simple key value pairs instead of shell scripts
+  if one of the shell flags aren't used
+- support DBUS_BLOCK_ON_ABORT env variable to cause blocking waiting for gdb
+- weak ref are now held for shared connections so the right things happen
+  this fixes some pretty major bugs with the way connections were handled
+- Some refactoring for Windows (doesn't effect Unix)
+- Solaris build fixes
+- MacOSX build fixes
+- Cross compile build fixes.  We now assume getpwnam_r is posix and va_lists
+  can be copied by value since we can't check this in a cross compile.  If
+  this is not true for a particular target is up to the developer to patch.
+- Bug fixing all around
+
 D-Bus 1.0 RC 1 (0.93) (14 September 2006)
 ==
 - dbus_threads_init_default added for initalizing threads without the need for

Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -d -r1.188 -r1.189
--- configure.in	13 Oct 2006 20:32:48 -0000	1.188
+++ configure.in	14 Oct 2006 17:38:56 -0000	1.189
@@ -5,7 +5,7 @@
 
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE(dbus, 0.93.1)
+AM_INIT_AUTOMAKE(dbus, 0.94)
 
 AM_CONFIG_HEADER(config.h)
 
@@ -187,6 +187,14 @@
      ;;
   esac
 
+  case " $CFLAGS " in
+  *[\ \	]-fPIC[\ \	]*) ;;
+  *) if cc_supports_flag -fPIC; then
+        CFLAGS="$CFLAGS -fPIC"
+     fi
+     ;;
+  esac
+
   if test "x$enable_ansi" = "xyes"; then
     case " $CFLAGS " in
     *[\ \	]-ansi[\ \	]*) ;;



More information about the dbus-commit mailing list