2003-09-28 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / ChangeLog
index f362de9..53472d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,284 @@
+2003-09-28  Havoc Pennington  <hp@pobox.com>
+
+       * configure.in: 0.13
+
+       * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
+       stylesheet-images for benefit of Debian
+       
+       Change back to using filesystem-linked sockets for the system
+       bus, so only root can create the default system bus address.
+       
+       * bus/system.conf.in: change to use
+       DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
+
+       * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
+       from here.
+
+       * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
+       here, and AC_DEFINE DBUS_SYSTEM_PATH
+
+2003-08-09  Anders Carlsson  <andersca@codefactory.se>
+
+       * doc/TODO:
+       * doc/busconfig.dtd:
+       Add busconfig DTD.
+       
+2003-08-09  Anders Carlsson  <andersca@codefactory.se>
+
+       * doc/dbus-specification.sgml:
+       Add activation reply values.
+       
+2003-08-05  Havoc Pennington  <hp@redhat.com>
+
+       * configure.in: 0.12
+
+2003-08-05  Anders Carlsson  <andersca@codefactory.se>
+
+       * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
+       (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
+       (add_watch), (remove_watch), (create_source):
+       Refcount fds, fixes some reentrancy issues.
+       
+2003-07-30  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-bus.c (init_connections_unlocked): fix default system
+       bus address to be abstract if we have abstract sockets
+
+       * NEWS: update
+
+2003-07-28  Havoc Pennington  <hp@redhat.com>
+
+       * bus/messagebus.in: fix to avoid processname/servicename 
+       confusion, from Michael Kearey
+       https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
+       
+2003-07-23  Havoc Pennington  <hp@pobox.com>
+
+       * dbus/dbus-message.c (dbus_message_iter_get_named): 
+       fix from Andy Hanton to remove broken "+1"
+
+2003-07-16  Havoc Pennington  <hp@pobox.com>
+
+       * tools/dbus-launch.c (babysit): close stdout/stderr in the
+       babysitter process, as suggested by Thomas Leonard, so 
+       an "eval `dbus-launch --exit-with-session`" will actually 
+       return
+
+2003-07-16  Havoc Pennington  <hp@pobox.com>
+
+       * configure.in: print out EXPANDED_* variables in the summary at
+       the end; clean up the code that computes EXPANDED_ variables and
+       get the ones using exec_prefix right. Should make things work
+       when you build without --prefix
+
+2003-06-29  Havoc Pennington  <hp@pobox.com>
+
+       * mono/Test.cs (class Test): fire up a main loop and run it
+
+       * mono/DBus.cs (DBus): don't g_thread_init since it can only be
+       done once, the app has to do it
+
+2003-06-26  Havoc Pennington  <hp@pobox.com>
+
+       * mono/Connection.cs: set up connection with the glib main loop
+
+2003-07-01  Havoc Pennington  <hp@redhat.com>
+
+       * doc/dbus-specification.sgml: clarify the format of a type code, 
+       change suggested by Jim Blandy
+
+2003-06-29  Miloslav Trmac  <mitr@volny.cz>
+
+       * doc/Makefile.am:
+       * tools/Makefile.am: Don't assume srcdir == builddir.
+
+       * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
+       the allocated block.
+       (_dbus_memory_test): New function.
+       * dbus/dbus-test.h: Add _dbus_memory_test ().
+       * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
+
+       * dbus/dbus-message.c (decode_header_data): Use %.4s instead
+       of %c%c%c%c.
+       (dbus_message_new): Remove obsolete @todo.
+
+       * dbus/dbus-marshal.c (_dbus_marshal_set_int64) 
+       (_dbus_marshal_set_uint64): Fix comment.
+
+       * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
+       hardcode FIELD_REPLY_SERIAL.
+
+       * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
+       (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
+
+       * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
+       and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
+
+2003-06-24  Havoc Pennington  <hp@pobox.com>
+
+       * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
+
+2003-06-23  Anders Carlsson  <andersca@codefactory.se>
+
+       * configure.in:
+       * gcj/.cvsignore:
+       * gcj/Hello.java:
+       * gcj/Makefile.am:
+       * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
+       * gcj/org/.cvsignore:
+       * gcj/org/Makefile.am:
+       * gcj/org/freedesktop/.cvsignore:
+       * gcj/org/freedesktop/Makefile.am:
+       * gcj/org/freedesktop/dbus/.cvsignore:
+       * gcj/org/freedesktop/dbus/Makefile.am:
+       * gcj/org/freedesktop/dbus/Message.java: (Message),
+       (Message.Message):
+       * gcj/org/freedesktop/dbus/natMessage.cc:
+       Fix the build system.
+       
+2003-06-22  Havoc Pennington  <hp@pobox.com>
+
+       * mono/Connection.cs: add more bindings
+
+       * dbus/dbus-threads.c (dbus_threads_init): allow calling this
+       more than once.
+
+2003-06-22  Havoc Pennington  <hp@pobox.com>
+
+       * mono/Connection.cs, mono/DBus.cs, mono/Error.cs: 
+       Start wrapping more stuff.
+
+2003-06-22  Havoc Pennington  <hp@pobox.com>
+
+       * mono/Message.cs: implement Message.Wrap() that ensures we only
+       have a single C# wrapper per DBusMessage, assuming it works which 
+       it probably doesn't.
+
+       * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
+       (dbus_message_free_data_slot): new
+       (dbus_message_set_data): new
+       (dbus_message_get_data): new
+
+2003-06-22  Havoc Pennington  <hp@pobox.com>
+
+       * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
+       (_dbus_data_slot_allocator_alloc): rework these to keep a
+       reference count on each slot and automatically manage a global 
+       slot ID variable passed in by address
+       
+       * bus/bus.c: convert to new dataslot API
+
+       * dbus/dbus-bus.c: convert to new dataslot API
+
+       * dbus/dbus-connection.c: convert to new dataslot API
+
+       * dbus/dbus-server.c: convert to new dataslot API
+
+       * glib/dbus-gmain.c: ditto
+
+       * bus/test.c: ditto
+
+       * bus/connection.c: ditto
+
+2003-06-22  Anders Carlsson  <andersca@codefactory.se>
+
+       * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
+       after the gcj checks so that the correct configuration tags
+       will be added to libtool.
+
+       * dbus-glib-1.pc.in: No need to specify any includes since
+       dbus-1.pc.in has those.
+
+2003-06-22  Havoc Pennington  <hp@pobox.com>
+
+       * mono/*, gcj/*, configure.in, Makefile.am: 
+       Check in makefiles and subdirs for mono and gcj bindings. 
+       Neither binding actually exists, just trying to get through 
+       all the build and other boring bits.
+
+2003-06-21  Philip Blundell  <philb@gnu.org>
+
+       * tools/dbus-monitor.1: Updated.
+
+       * tools/dbus-send.1: Likewise.
+
+2003-06-20  Anders Carlsson  <andersca@codefactory.se>
+
+       * dbus/dbus-transport-unix.c (unix_handle_watch): Check 
+       for hangup and error after checking read so we won't discard
+       pending data if both hangup and read are set.
+
+2003-06-19  Philip Blundell  <philb@gnu.org>
+
+       * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
+
+       * tools/dbus-send.c: Accept both --system and --session.
+        
+       * tools/dbus-monitor.c: Same here.
+       
+2003-06-19  Anders Carlsson  <andersca@codefactory.se>
+
+       * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
+       from C++ (Patch by Miloslav Trmac).
+
+2003-06-15  Joe Shaw  <joe@assbarn.com>
+
+       * configure.in: Check for socklen_t.
+
+       * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
+
+       * test/test-segfault.c: Add #include <sys/time.h>
+
+       * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
+       dbus-launch needs it.
+
+2003-06-09  Havoc Pennington  <hp@redhat.com>
+
+       * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
+       SUN_LEN, it breaks abstract socket usage
+
+       * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
+       starts of lines.
+
+2003-06-04  Havoc Pennington  <hp@pobox.com>
+
+       * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
+       using unix:abstract=/foo, and when listening in a tmpdir
+       i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
+
+       * dbus/dbus-transport.c (_dbus_transport_open): support
+       unix:abstract=/foo
+
+       * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
+       support abstract sockets
+
+       * dbus/dbus-transport-unix.c
+       (_dbus_transport_new_for_domain_socket): support abstract sockets
+
+       * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
+       toggle as an argument, implement abstract namespace support
+       (_dbus_listen_unix_socket): ditto
+
+       * configure.in: add --enable-abstract-sockets and implement 
+       a configure check for autodetection of the right value.
+
+2003-06-01  Havoc Pennington  <hp@pobox.com>
+
+       * tools/dbus-cleanup-sockets.c: add utility to clean up sockets 
+       in /tmp (though on Linux this will end up being useless, 
+       when we add abstract namespace support)
+
+       * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
+       subst'ing it
+
+2003-05-28  Colin Walters  <walters@verbum.org>
+
+       * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
+
+2003-05-18  Anders Carlsson  <andersca@codefactory.se>
+
+       * dbus/dbus-message.c (dbus_message_new): Remove @todo.
+
 2003-05-17  Colin Walters  <walters@gnu.org>
 
        * tools/dbus-send.c: Don't exit with an error code if --help was