diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | NEWS | 24 | ||||
| -rw-r--r-- | configure.in | 10 | 
3 files changed, 38 insertions, 1 deletions
| @@ -1,5 +1,10 @@  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  2006-10-13  John (J5) Palmieri  <johnp@redhat.com> @@ -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 diff --git a/configure.in b/configure.in index 53ecf3d8..f8856a17 100644 --- a/configure.in +++ b/configure.in @@ -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[\ \	]*) ;; | 
