config: remove redundant DBUS API define, require dbus-1 >= 1.0
It's still being pulled in by the HAL CFLAGS but the requirement to define this was dropped from DBus pre 1.0 (November 2006). This means we require dbus 1.0 now. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Daniel Stone <daniel@fooishbar.org> Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
This commit is contained in:
parent
66b21b2f45
commit
7805e45284
|
@ -27,7 +27,6 @@
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DBUS_API_SUBJECT_TO_CHANGE
|
|
||||||
#include <dbus/dbus.h>
|
#include <dbus/dbus.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
|
@ -809,6 +809,7 @@ LIBPCIACCESS="pciaccess >= 0.8.0"
|
||||||
LIBGLIB="glib-2.0 >= 2.16"
|
LIBGLIB="glib-2.0 >= 2.16"
|
||||||
LIBUDEV="libudev >= 143"
|
LIBUDEV="libudev >= 143"
|
||||||
LIBSELINUX="libselinux >= 2.0.86"
|
LIBSELINUX="libselinux >= 2.0.86"
|
||||||
|
LIBDBUS="dbus-1 >= 1.0"
|
||||||
|
|
||||||
if test "x$CONFIG_UDEV" = xyes &&
|
if test "x$CONFIG_UDEV" = xyes &&
|
||||||
{ test "x$CONFIG_DBUS_API" = xyes || test "x$CONFIG_HAL" = xyes; }; then
|
{ test "x$CONFIG_DBUS_API" = xyes || test "x$CONFIG_HAL" = xyes; }; then
|
||||||
|
@ -832,7 +833,7 @@ fi
|
||||||
dnl HAVE_DBUS is true if we actually have the D-Bus library, whereas
|
dnl HAVE_DBUS is true if we actually have the D-Bus library, whereas
|
||||||
dnl CONFIG_DBUS_API is true if we want to enable the D-Bus config
|
dnl CONFIG_DBUS_API is true if we want to enable the D-Bus config
|
||||||
dnl API.
|
dnl API.
|
||||||
PKG_CHECK_MODULES(DBUS, dbus-1, [HAVE_DBUS=yes], [HAVE_DBUS=no])
|
PKG_CHECK_MODULES(DBUS, $LIBDBUS, [HAVE_DBUS=yes], [HAVE_DBUS=no])
|
||||||
if test "x$HAVE_DBUS" = xyes; then
|
if test "x$HAVE_DBUS" = xyes; then
|
||||||
AC_DEFINE(HAVE_DBUS, 1, [Have D-Bus support])
|
AC_DEFINE(HAVE_DBUS, 1, [Have D-Bus support])
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue