summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorjoey@joeyhewitt.com <joey@joeyhewitt.com>2020-03-04 07:16:24 +0000
committerDenis Kenzior <denkenz@gmail.com>2020-03-04 10:03:20 -0600
commitcf850de6328e51a448de2cee08e0145bc814ba05 (patch)
treeef2b9ff31db01e90e9a4287fc9d6a5f437da07a8 /configure.ac
parent952f1d00be4e0a9dd71b7b8e5b6ef2f967e2f7c2 (diff)
downloadofono-cf850de6328e51a448de2cee08e0145bc814ba05.tar.gz
build: require dbus >= 1.6
dbus_validate_path() is used several times. dbus's NEWS says it was added in 1.5.12.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b17bfb5e..3655a112 100644
--- a/configure.ac
+++ b/configure.ac
@@ -67,8 +67,8 @@ PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.32, dummy=yes,
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
-PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.4, dummy=yes,
- AC_MSG_ERROR(D-Bus >= 1.4 is required))
+PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.6, dummy=yes,
+ AC_MSG_ERROR(D-Bus >= 1.6 is required))
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)