summaryrefslogtreecommitdiff
path: root/config-scripts
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-10-21 10:55:57 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-10-21 10:55:57 -0400
commit9e82c53ebcb50e53358285efeb06bcccba57f4ee (patch)
tree14cedfd6cab88430974ef64497db9ecec327a792 /config-scripts
parent7454512be9a59d6462f61621915c8991f2af6e37 (diff)
downloadcups-9e82c53ebcb50e53358285efeb06bcccba57f4ee.tar.gz
Fix --with-dbusdir (Issue #5671)
Diffstat (limited to 'config-scripts')
-rw-r--r--config-scripts/cups-common.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/config-scripts/cups-common.m4 b/config-scripts/cups-common.m4
index 87264d850..27b7b2796 100644
--- a/config-scripts/cups-common.m4
+++ b/config-scripts/cups-common.m4
@@ -293,14 +293,14 @@ fi
LIBS="$SAVELIBS"
dnl Check for DBUS support
-AC_ARG_ENABLE(dbus, [ --disable-dbus build without DBUS support])
-AC_ARG_WITH(dbusdir, [ --with-dbusdir set DBUS configuration directory ],
- DBUSDIR="$withval")
-
DBUSDIR=""
DBUS_NOTIFIER=""
DBUS_NOTIFIERLIBS=""
+AC_ARG_ENABLE(dbus, [ --disable-dbus build without DBUS support])
+AC_ARG_WITH(dbusdir, [ --with-dbusdir set DBUS configuration directory ],
+ DBUSDIR="$withval")
+
if test "x$enable_dbus" != xno -a "x$PKGCONFIG" != x -a "x$host_os_name" != xdarwin; then
AC_MSG_CHECKING(for DBUS)
if $PKGCONFIG --exists dbus-1; then