diff options
author | Max Kellermann <max@duempel.org> | 2008-10-17 22:48:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-17 22:48:43 +0200 |
commit | ae6ca0b8aff0fdedda7f978ff02d810f1d619bd7 (patch) | |
tree | 043221e3d69466321091a8f16568385c495fdca3 /configure.ac | |
parent | 11ad9971415c18dfb8f2042b65da31d0102b8c91 (diff) | |
download | mpd-ae6ca0b8aff0fdedda7f978ff02d810f1d619bd7.tar.gz mpd-ae6ca0b8aff0fdedda7f978ff02d810f1d619bd7.tar.xz mpd-ae6ca0b8aff0fdedda7f978ff02d810f1d619bd7.zip |
configure.ac: test $with_zeroconf!=no
Patch 25b5d90e broke zeroconf compilation, because it assumed that
$with_zeroconf was set to "yes", although it can be either "bonjour"
or "avahi".
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8adebafa0..672297d7d 100644 --- a/configure.ac +++ b/configure.ac @@ -730,7 +730,7 @@ if test x$with_zeroconf != xno; then fi fi -AM_CONDITIONAL(HAVE_ZEROCONF, test x$with_zeroconf = xyes) +AM_CONDITIONAL(HAVE_ZEROCONF, test x$with_zeroconf != xno) dnl |