aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-06-21 21:51:10 +0800
committerDan Winship <danw@src.gnome.org>2001-06-21 21:51:10 +0800
commit7728dadd907e9462159ed55c96c10bd6ce6983e9 (patch)
tree9805752f259a19d63623bb6bc3d27a2ad3f11ecb
parent536c03eb04a02b733c87956f7f86b26b1741cb8f (diff)
downloadgsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.tar
gsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.tar.gz
gsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.tar.bz2
gsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.tar.lz
gsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.tar.xz
gsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.tar.zst
gsoc2013-evolution-7728dadd907e9462159ed55c96c10bd6ce6983e9.zip
Fix the OpenLDAP check to default to "no" if you don't specify anything.
* configure.in: Fix the OpenLDAP check to default to "no" if you don't specify anything. svn path=/trunk/; revision=10352
-rw-r--r--ChangeLog5
-rw-r--r--configure.in29
2 files changed, 22 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 88e11bb6e0..80eb4a0a6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-21 Dan Winship <danw@ximian.com>
+
+ * configure.in: Fix the OpenLDAP check to default to "no" if you
+ don't specify anything.
+
2001-06-20 Kevin Breit <battery841@mediaone.net>
* doc/C/config-setupassist.sgml: Updated for new UI.
diff --git a/configure.in b/configure.in
index 1adce69ddd..f8c4bcf7ed 100644
--- a/configure.in
+++ b/configure.in
@@ -366,18 +366,25 @@ dnl **************************************************
dnl * ldap related stuff.
dnl **************************************************
AC_ARG_WITH(openldap, [ --with-openldap=[no/yes/PREFIX] Enable LDAP support in evolution])
-if test "$with_openldap" != no; then
- case $with_openldap in
- /*)
- LDAP_CFLAGS="-I$with_openldap/include"
- LDAP_LDFLAGS="-L$with_openldap/lib"
- ;;
- *)
- with_openldap=/usr
- esac
- AC_DEFINE(HAVE_LDAP)
+AC_CACHE_CHECK([for OpenLDAP], ac_cv_with_openldap, ac_cv_with_openldap="${with_openldap:=no}")
+case $ac_cv_with_openldap in
+no|"")
+ msg_ldap=no
+ ;;
+yes)
+ with_openldap=/usr
+ msg_ldap=yes
+ ;;
+*)
+ with_openldap=$ac_cv_with_openldap
+ LDAP_CFLAGS="-I$ac_cv_with_openldap/include"
+ LDAP_LDFLAGS="-L$ac_cv_with_openldap/lib"
msg_ldap=yes
+ ;;
+esac
+if test "$msg_ldap" = yes; then
+ AC_DEFINE(HAVE_LDAP)
AC_CACHE_CHECK(if OpenLDAP is version 2.x, ac_cv_openldap_version2, [
CPPFLAGS_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $LDAP_CFLAGS"
@@ -413,8 +420,6 @@ if test "$with_openldap" != no; then
AC_SUBST(LDAP_CFLAGS)
AC_SUBST(LDAP_LIBS)
-else
- msg_ldap=no
fi
AM_CONDITIONAL(ENABLE_LDAP, test $msg_ldap = yes)