From ae6ca0b8aff0fdedda7f978ff02d810f1d619bd7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 17 Oct 2008 22:48:43 +0200 Subject: 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". --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3