From 8b6432a8728f87aa328bd67f07a35a1e755d75e6 Mon Sep 17 00:00:00 2001 From: Gioele Barabucci Date: Wed, 9 Aug 2023 08:51:42 +0200 Subject: [PATCH] configure.ac: Bump minimum D-Bus version to 1.10 D-Bus 1.10, released in 2015, is the first version that supports reading policy files from `/usr/share/dbus-1` in addition to `/etc/dbus-1`. The previous minimum version, 1.6, was released in 2012. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bc7edfcd3..298b8cd59 100644 --- a/configure.ac +++ b/configure.ac @@ -85,8 +85,8 @@ if (test "${enable_threads}" = "yes"); then GLIB_LIBS="$GLIB_LIBS $GTHREAD_LIBS" fi -PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.6, dummy=yes, - AC_MSG_ERROR(D-Bus >= 1.6 is required)) +PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.10, dummy=yes, + AC_MSG_ERROR(D-Bus >= 1.10 is required)) AC_SUBST(DBUS_CFLAGS) AC_SUBST(DBUS_LIBS) -- 2.47.3