aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-02-12 06:31:45 +0800
committerChris Toshok <toshok@src.gnome.org>2001-02-12 06:31:45 +0800
commit5d06ca56b25f750324c231e41825d0ea73be7268 (patch)
tree52d4ccc4477326669b5fbd0d8bb2131c168fcb09
parent7d82a4122071a582058ba1da825b7c76c9f87290 (diff)
downloadgsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.tar
gsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.tar.gz
gsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.tar.bz2
gsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.tar.lz
gsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.tar.xz
gsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.tar.zst
gsoc2013-evolution-5d06ca56b25f750324c231e41825d0ea73be7268.zip
rework ldap check logic so it'll work to --disable-ldap if you've
2001-02-11 Chris Toshok <toshok@ximian.com> * configure.in: rework ldap check logic so it'll work to --disable-ldap if you've previously configured with --enable-ldap. svn path=/trunk/; revision=8176
-rw-r--r--ChangeLog5
-rw-r--r--configure.in3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 800c678418..7a4824424c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-11 Chris Toshok <toshok@ximian.com>
+
+ * configure.in: rework ldap check logic so it'll work to
+ --disable-ldap if you've previously configured with --enable-ldap.
+
2001-02-11 Gediminas Paulauskas <menesis@delfi.lt>
* data/evolution.keys, evolution.desktop: removed, they are generated.
diff --git a/configure.in b/configure.in
index f35e9c211d..ce60f30a54 100644
--- a/configure.in
+++ b/configure.in
@@ -163,8 +163,9 @@ if test x$ac_cv_lib_ldap_ldap_open = xyes; then
msg_ldap=Yes
else
msg_ldap=No
+ enable_ldap=no
fi
-AM_CONDITIONAL(ENABLE_LDAP, test x$ac_cv_lib_ldap_ldap_open = xyes)
+AM_CONDITIONAL(ENABLE_LDAP, test x$enable_ldap = xyes)
dnl **************************************************
dnl NNTP support.