]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
* configure.in: Released 1.0 RC 2(0.94) dbus-0.94
authorJohn (J5) Palmieri <johnp@redhat.com>
Sat, 14 Oct 2006 17:38:56 +0000 (17:38 +0000)
committerJohn (J5) Palmieri <johnp@redhat.com>
Sat, 14 Oct 2006 17:38:56 +0000 (17:38 +0000)
  Add check for -fPIC and enable it if available

ChangeLog
NEWS
configure.in

index 3eb03fbe33a6043d9376b029210554cdc7c0d9d6..d0963145c9207a983849e58da93344534cc530ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-14  John (J5) Palmieri  <johnp@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@redhat.com>
 
        * doc/TODO: Remove the check TODO item
diff --git a/NEWS b/NEWS
index 7839c03ecb6460182e4048e9a34d0673871d4711..b08451c94d7450e08b9ddaedbd929b6b570fc73d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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 53ecf3d8f34abad6ad99c87e94d8c8429a248c60..f8856a1700799fbf43126923b9693403c22523a8 100644 (file)
@@ -5,7 +5,7 @@ AC_INIT(dbus/dbus.h)
 
 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 @@ if test "x$GCC" = "xyes"; then
      ;;
   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[\ \      ]*) ;;