From 718d2801d6bafedfe91d7b475294d69e2d6a77a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Sun, 18 Oct 2009 17:01:57 +0200 Subject: [PATCH] s3:configure: fix avahi activation Avahi was correctly found but not activated since e4a26c942. --- source3/configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index 36c89efe2b4..69596df46c4 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -6197,12 +6197,12 @@ if test x"$enable_avahi" != x"no"; then fi save_LIBS="$LIBS" - AC_CHECK_LIB(avahi-client, avahi_client_new) - AC_CHECK_LIB(avahi-common, avahi_strerror) + AC_CHECK_LIB(avahi-client, avahi_client_new,[have_avahi_client_new=yes]) + AC_CHECK_LIB(avahi-common, avahi_strerror,[have_avahi_strerror=yes]) LIBS="$save_LIBS" - if test x"$ac_cv_lib_ext_avahi_client_avahi_client_new" != x"yes" -o \ - x"$ac_cv_lib_ext_avahi_common_avahi_strerror" != x"yes" ; then + if test x"$have_avahi_client_new" != x"yes" -o \ + x"$have_avahi_strerror" != x"yes" ; then have_avahi_support=no fi -- 2.34.1