mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 05:18:00 +02:00
Merge branch 'dbus-1.6'
This commit is contained in:
commit
89c1ecdd7c
3 changed files with 19 additions and 0 deletions
14
NEWS
14
NEWS
|
|
@ -1,6 +1,20 @@
|
|||
D-Bus 1.7.2 (UNRELEASED)
|
||||
==
|
||||
|
||||
• Unix-specific:
|
||||
· Under systemd, log to syslog only, not stderr, avoiding duplication
|
||||
(fd.o #61399, #39987; Colin Walters, Dagobert Michelsen)
|
||||
· Include alloca.h for alloca() if available, fixing compilation on
|
||||
Solaris 10 (fd.o #63071, Dagobert Michelsen)
|
||||
· Allow use of systemd-logind without the rest of systemd
|
||||
(fd.o #62585, Martin Pitt)
|
||||
· When built with CMake, link to librt and use the right path for
|
||||
meinproc's XSLT stylesheets (fd.o #61637, Ralf Habacker)
|
||||
|
||||
• Windows-specific:
|
||||
· Do not claim that all bus clients have the dbus-daemon's credentials
|
||||
(fd.o #61787, Ralf Habacker)
|
||||
|
||||
D-Bus 1.7.0 (2013-02-22)
|
||||
==
|
||||
|
||||
|
|
|
|||
|
|
@ -688,6 +688,8 @@ AC_CHECK_HEADERS(ws2tcpip.h)
|
|||
|
||||
AC_CHECK_HEADERS(wspiapi.h)
|
||||
|
||||
AC_CHECK_HEADERS(alloca.h)
|
||||
|
||||
# Add -D_POSIX_PTHREAD_SEMANTICS if on Solaris
|
||||
#
|
||||
case $host_os in
|
||||
|
|
|
|||
|
|
@ -72,6 +72,9 @@
|
|||
#ifdef HAVE_GETPEERUCRED
|
||||
#include <ucred.h>
|
||||
#endif
|
||||
#ifdef HAVE_ALLOCA_H
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_ADT
|
||||
#include <bsm/adt.h>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue