* configure.in: add DBUS_BINDIR as a #define to C source code.
[platform/upstream/dbus.git] / ChangeLog
index a194a65..55a88c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,100 @@
+2006-09-30  Thiago Macieira  <thiago@kde.org>
+
+       * configure.in: add DBUS_BINDIR as a #define to C source code.
+
+       * tools/dbus-launch.c
+       * tools/dbus-launch.h
+       * tools/dbus-launch-x11.c:
+       * tools/dbus-launch.1: Add the --autolaunch option to
+       dbus-launch, which makes it scan for an existing session
+       started with --autolaunch. With that option, it also creates
+       an X11 window and saves the bus address and PID to it.
+
+       * dbus/dbus-sysdeps.h:
+       * dbus/dbus-sysdeps-unix.c (_dbus_get_autolaunch_address): Add
+       a function that runs "dbus-launch --autolaunch" to retrieve
+       the running D-Bus session address (or start one if none was running)
+
+       * dbus/dbus-transport.c: Add the handler for the "autolaunch:"
+        address protocol, which tries to get the running session from
+        dbus-launch.
+
+       * dbus/dbus-bus.c:
+       * dbus/dbus-internals.h: Make "autolaunch:" be the default
+       D-Bus session bus address.
+
+       * dbus/dbus-connection.c: Fix horrible typo in error message.
+
+2006-09-18  John (J5) Palmieri  <johnp@redhat.com>
+
+       * tools/Makefile.am: use @EXPANDED_DATADIR@ instead of @DATADIRNAME@  
+
+2006-09-17  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
+       fix so that if unix_user_function is set on windows, we still
+       do the default check that the auth identity matches the bus identity
+
+2006-09-16  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-transport.c (_dbus_transport_open): modify to delegate
+       to _dbus_transport_open_platform_specific,
+       _dbus_transport_open_socket,
+       and _dbus_transport_open_debug_pipe
+
+       * dbus/dbus-transport-protected.h: add _dbus_transport_open_platform_specific
+
+2006-09-16  Havoc Pennington  <hp@redhat.com>
+
+        Attempt auditing public API to remove all cases where a Unix
+       function returns weird emulated goo to Windows. This probably 
+       breaks the bus daemon on Windows, to fix it again we may 
+       need to stop processing unix-specific config options on Windows,
+       and may need to add Windows-specific public API or config options.
+       
+       * configure.in (LT_CURRENT, LT_AGE): increment current and age,
+       to reflect added interfaces; should not break soname.
+       
+       * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated): do
+       not invoke unix user function on Windows. Kind of a hacky fix, but 
+       we don't want a "unix uid" leaking out on Windows.
+
+       * dbus/dbus-connection.c (dbus_connection_get_socket): add new API
+       to get the socket fd on Windows or UNIX
+       (dbus_connection_get_unix_fd): make this always fail on Windows
+
+2006-09-16  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-server.c (dbus_server_listen): change how this works
+       to be able to delegate to a set of handlers that can succeed,
+       fail, or choose not to handle. Allows us to have 
+       dbus_server_listen_platform_specific.
+
+       * dbus/dbus-server-socket.c (_dbus_server_new_for_tcp_socket):
+       factor out the tcp socket stuff to be used on windows, leaving
+       unix domain socket only in dbus-socket-unix.c
+
+       * dbus/dbus-transport-socket.c
+       (_dbus_transport_new_for_tcp_socket): factor out the tcp socket
+       stuff to be used on windows, leaving unix domain socket only 
+       in dbus-transport-unix.c
+
+       * dbus/dbus-connection.c (dbus_connection_get_unix_user): insert
+       temporary hack to be sure this fails on windows
+       (dbus_connection_get_unix_process_id): ditto
+
+2006-09-16  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-sysdeps-unix.c (_dbus_open_tcp_socket) 
+       (_dbus_open_unix_socket, _dbus_open_socket): change API for 
+       _dbus_open_socket so the domain/type/protocol from system headers
+       are not required. This is kind of pointless though unless we move
+       part of _dbus_connect_tcp_socket into sysdeps.c instead of
+       sysdeps-unix.c, which would mean adding a wrapper around
+       bind/listen/etc.
+       Also, add DBusError to the socket-opening functions so they 
+       don't require use of errno.
+
 2006-09-16  Havoc Pennington  <hp@redhat.com>
 
        * dbus/dbus-sysdeps-unix.h: small change to Peter's patch to make