]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix --with-dbusdir (Issue #5671)
authorMichael R Sweet <michael.r.sweet@gmail.com>
Mon, 21 Oct 2019 14:55:57 +0000 (10:55 -0400)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Mon, 21 Oct 2019 14:55:57 +0000 (10:55 -0400)
CHANGES.md
config-scripts/cups-common.m4

index 02d4c56df941896b76d7bbc762e9ef3db1d72f4d..c741f4f25ceb59bc5dcecf03c92eeab3b5796d8c 100644 (file)
@@ -1,4 +1,4 @@
-CHANGES - 2.3.1 - 2019-10-15
+CHANGES - 2.3.1 - 2019-10-21
 ============================
 
 
@@ -15,6 +15,7 @@ Changes in CUPS v2.3.1
 - The libusb-based USB backend now reports an error when the distribution
   permissions are wrong (Issue #5658)
 - Added paint can labels to Dymo driver (Issue #5662)
+- The `--with-dbusdir` option was ignored by the configure script (Issue #5671)
 - The IPP backend did not detect all cases where a job should be retried using
   a raster format (rdar://56021091)
 - Fixed spelling of "fold-accordion".
index 87264d850b3c444ff04f5fc76e9ef6703ff5df04..27b7b279611f19b0ea0acf382fa3199315706ba7 100644 (file)
@@ -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