diff options
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index c2869c461..2296ec903 100644 --- a/configure.ac +++ b/configure.ac @@ -588,11 +588,13 @@ if test x$enable_mod = xyes; then fi fi -if test x$with_zeroconf != xno -a \ - x$with_zeroconf != xavahi -a \ - x$with_zeroconf != xbonjour; then +case $with_zeroconf in +no|avahi|bonjour) + ;; +*) with_zeroconf=auto -fi + ;; +esac if test x$with_zeroconf != xno; then if test x$with_zeroconf = xauto; then |