allow --enable/disable-ldap.

2001-02-01  Chris Toshok  <toshok@ximian.com>

	* configure.in: allow --enable/disable-ldap.

svn path=/trunk/; revision=7943
This commit is contained in:
Chris Toshok
2001-02-02 03:09:11 +00:00
committed by Chris Toshok
parent c051d7fa52
commit 0c6b184aaa
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2001-02-01 Chris Toshok <toshok@ximian.com>
* configure.in: allow --enable/disable-ldap.
2001-02-01 Jason Leach <jasonleach@usa.net>
* tools/killev: Fix this script to make it work with Solaris.

View File

@ -147,16 +147,19 @@ AC_CHECK_HEADERS(db1/db.h)
dnl **************************************************
dnl * ldap related stuff.
dnl **************************************************
AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="-llber")
if test x$ac_cv_lib_lber_ber_get_tag = xyes; then
AC_CHECK_LIB(ldap, ldap_open, LDAP_LIBS="-lldap $LDAP_LIBS", ,-llber)
AC_ARG_ENABLE(ldap,
[ --enable-ldap=[no/yes] Enable LDAP support in evolution],,enable_ldap=no)
if test x$enable_ldap = xyes; then
AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="-llber")
if test x$ac_cv_lib_lber_ber_get_tag = xyes; then
AC_CHECK_LIB(ldap, ldap_open, LDAP_LIBS="-lldap $LDAP_LIBS", ,-llber)
fi
fi
if test x$ac_cv_lib_ldap_ldap_open = xyes; then
AC_DEFINE(HAVE_LDAP)
AC_SUBST(LDAP_LIBS)
msg_ldap=Yes
else
AC_MSG_WARN(no ldap support present)
msg_ldap=No
fi
AM_CONDITIONAL(ENABLE_LDAP, test x$ac_cv_lib_ldap_ldap_open = xyes)