Skip to content

Commit

Permalink
Fix --with-dbusdir (Issue #5671)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Oct 21, 2019
1 parent 7454512 commit 9e82c53
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CHANGES - 2.3.1 - 2019-10-15
CHANGES - 2.3.1 - 2019-10-21
============================


Expand All @@ -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:https://56021091)
- Fixed spelling of "fold-accordion".
Expand Down
8 changes: 4 additions & 4 deletions config-scripts/cups-common.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9e82c53

Please sign in to comment.