[SCM] Samba Shared Repository - branch v3-5-test updated

Jeremy Allison jra at samba.org
Sun Oct 18 11:45:31 MDT 2009


The branch, v3-5-test has been updated
       via  3555704... s3:configure: fix avahi activation
      from  404f744... Fix posix_unlink test. Was doing grep without quotes around the target string. Jeremy.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -----------------------------------------------------------------
commit 355570499426ec126ea84853e0d7e1a9aa690980
Author: Björn Jacke <bj at sernet.de>
Date:   Sun Oct 18 17:01:57 2009 +0200

    s3:configure: fix avahi activation
    
    Avahi was correctly found but not activated since e4a26c942.

-----------------------------------------------------------------------

Summary of changes:
 source3/configure.in |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index 0599864..8781cce 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -6147,12 +6147,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
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list