From: Simon McVittie Date: Wed, 30 Apr 2014 20:05:46 +0000 (+0100) Subject: Merge branch 'dbus-1.8' X-Git-Tag: dbus-1.9.0~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e21873d6331de86e88fd47dfb80af2696e6ff39;p=thirdparty%2Fdbus.git Merge branch 'dbus-1.8' Conflicts: NEWS configure.ac --- 6e21873d6331de86e88fd47dfb80af2696e6ff39 diff --cc NEWS index 2accc0b9e,9a2b8890e..592515bc7 --- a/NEWS +++ b/NEWS @@@ -1,26 -1,13 +1,47 @@@ -D-Bus 1.8.3 (UNRELEASED) +D-Bus 1.9.0 (UNRELEASED) == +Requirements: + +• Support for the systemd: (LISTEN_FDS) pseudo-transport on Linux now + requires the sd-daemon shared library, dropping the embedded convenience + copy (fd.o #71818, Simon) + +Build-time configuration changes: + +• The CMake build system now builds the same shared library name as Autotools + on at least Linux and Windows: + - on Linux (and perhaps other Unix platforms), it previously built + libdbus-1.so, but now builds libdbus-1.so.3.* with development + symlink libdbus-1.so and SONAME/symlink libdbus-1.so.3 + - on Windows, it previously built either libdbus-1.dll (release) or + libdbus-1d.dll (debug), but now builds libdbus-1-3.dll, copied to + libdbus-1.dll for compatibility with older applications. + (fd.o #74117, Ralf Habacker) + +Enhancements: + ++• on Unix platforms, disable Nagle's algorithm on TCP connections to improve ++ initial latency (fd.o #75544, Matt Hoosier) ++ ++Fixes: ++ ++• fix an incorrect error message if a Unix socket path is too long ++ (fd.o #73887, Antoine Jacoutot) ++ ++• in an MSYS/Cygwin environment, pass Unix-style filenames to xmlto, ++ fixing documentation generation (fd.o #75860, Руслан Ижбулатов) ++ ++• in Unix with X11, avoid giving dbus-launch a misleading argv[0] ++ in ps(1) (fd.o #69716, Chengwei Yang) ++ + D-Bus 1.8.2 (2014-04-30) + == + + The “nobody wants red” release. + + Enhancements: + • in the CMake build system, add some hints for Linux users cross-compiling Windows D-Bus binaries to be able to run tests under Wine (fd.o #41252, Ralf Habacker) diff --cc configure.ac index 13d1c87e8,767662d26..5fdc56629 --- a/configure.ac +++ b/configure.ac @@@ -3,7 -3,7 +3,8 @@@ AC_PREREQ([2.63] m4_define([dbus_major_version], [1]) m4_define([dbus_minor_version], [8]) -m4_define([dbus_micro_version], [3]) +m4_define([dbus_micro_version], [99]) ++m4_define([dbus_micro_version], [1]) m4_define([dbus_version], [dbus_major_version.dbus_minor_version.dbus_micro_version]) AC_INIT([dbus],[dbus_version],[https://bugs.freedesktop.org/enter_bug.cgi?product=dbus],[dbus])