svn commit: samba r15550 - branches/SAMBA_3_0/source trunk/source

jerry at samba.org jerry at samba.org
Fri May 12 21:31:53 GMT 2006


Author: jerry
Date: 2006-05-12 21:31:52 +0000 (Fri, 12 May 2006)
New Revision: 15550

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15550

Log:
make sure to pick up the -lresolv libs on systems without -lldap to pull it in
Modified:
   branches/SAMBA_3_0/source/configure.in
   trunk/source/configure.in


Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in	2006-05-12 21:00:52 UTC (rev 15549)
+++ branches/SAMBA_3_0/source/configure.in	2006-05-12 21:31:52 UTC (rev 15550)
@@ -1531,8 +1531,10 @@
 fi
 
 #####################################
-# we might need the resolv library on some systems
+# needed for SRV lookups
 AC_CHECK_LIB(resolv, dn_expand)
+AC_CHECK_LIB(resolv, _dn_expand)
+AC_CHECK_LIB(resolv, __dn_expand)
 
 #
 # Check for the functions putprpwnam, set_auth_parameters,

Modified: trunk/source/configure.in
===================================================================
--- trunk/source/configure.in	2006-05-12 21:00:52 UTC (rev 15549)
+++ trunk/source/configure.in	2006-05-12 21:31:52 UTC (rev 15550)
@@ -1531,8 +1531,10 @@
 fi
 
 #####################################
-# we might need the resolv library on some systems
+# needed for SRV lookups
 AC_CHECK_LIB(resolv, dn_expand)
+AC_CHECK_LIB(resolv, _dn_expand)
+AC_CHECK_LIB(resolv, __dn_expand)
 
 #
 # Check for the functions putprpwnam, set_auth_parameters,



More information about the samba-cvs mailing list