Fix autodetection of some ldap functions.

PR:		ports/85700
Submitted by:	Brian A. Seklecki <lavalamp@spiritual-machines.org>
This commit is contained in:
Alex Dupre 2005-09-08 10:37:13 +00:00
parent 82697c7543
commit eb5c68b0c0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=142209

View file

@ -0,0 +1,22 @@
--- config.m4.orig Sun May 8 17:59:18 2005
+++ config.m4 Thu Sep 8 12:29:22 2005
@@ -161,17 +161,18 @@
_SAVE_CPPFLAGS=$CPPFLAGS
_SAVE_LDFLAGS=$LDFLAGS
CPPFLAGS="$CPPFLAGS -I$LDAP_INCDIR"
+ LDFLAGS="$LDFLAGS $LDAP_SHARED_LIBADD"
AC_CACHE_CHECK([for 3 arg ldap_set_rebind_proc], ac_cv_3arg_setrebindproc,
[AC_TRY_COMPILE([#include <ldap.h>], [ldap_set_rebind_proc(0,0,0)],
ac_cv_3arg_setrebindproc=yes, ac_cv_3arg_setrebindproc=no)])
if test "$ac_cv_3arg_setrebindproc" = yes; then
AC_DEFINE(HAVE_3ARG_SETREBINDPROC,1,[Whether 3 arg set_rebind_proc()])
fi
- CPPFLAGS=$_SAVE_CPPFLAGS
dnl Solaris 2.8 claims to be 2004 API, but doesn't have
dnl ldap_parse_reference() nor ldap_start_tls_s()
AC_CHECK_FUNCS([ldap_parse_result ldap_parse_reference ldap_start_tls_s])
+ CPPFLAGS=$_SAVE_CPPFLAGS
LDFLAGS=$_SAVE_LDFLAGS
dnl