diff options
author | Björn Jacke <bj@sernet.de> | 2009-10-18 17:01:57 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2009-10-18 17:06:29 +0200 |
commit | 718d2801d6bafedfe91d7b475294d69e2d6a77a4 (patch) | |
tree | 0ee9c11f6cc1c19c928a937b2a3314c4b8da9bc5 /source3 | |
parent | 77b9d2827b296d8da69545b647acae1c2de8717d (diff) | |
download | samba-718d2801d6bafedfe91d7b475294d69e2d6a77a4.tar.gz samba-718d2801d6bafedfe91d7b475294d69e2d6a77a4.tar.bz2 samba-718d2801d6bafedfe91d7b475294d69e2d6a77a4.zip |
s3:configure: fix avahi activation
Avahi was correctly found but not activated since e4a26c942.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/configure.in b/source3/configure.in index 36c89efe2b..69596df46c 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 |