aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--acinclude.m48
2 files changed, 8 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 66974747c6..e62847f907 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-04-03 Chris Toshok <toshok@ximian.com>
+
+ * acinclude.m4 (EVO_LDAP_CHECK): the existence of libldap.la
+ should have no bearing on whether or not we try to statically link
+ ldap.
+
2003-03-29 Duarte Loreto <happyguy_pt@hotmail.com>
* AUTHORS: Added myself as new Portuguese translator.
diff --git a/acinclude.m4 b/acinclude.m4
index b5cdbbdddd..b9b3f8f5a7 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -106,12 +106,8 @@ AC_DEFUN(EVO_LDAP_CHECK, [
AC_DEFINE(HAVE_LDAP,1,[Define if you have LDAP support])
case $with_static_ldap in
- no|"")
- if test -f $with_openldap/lib/libldap.la; then
- with_static_ldap=yes
- else
- with_static_ldap=no
- fi
+ no)
+ with_static_ldap=no
;;
*)
with_static_ldap=yes