aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-04-04 09:08:36 +0800
committerChris Toshok <toshok@src.gnome.org>2003-04-04 09:08:36 +0800
commit46b7c0bd86fbe4b979198e90d0020a14e3998b67 (patch)
tree25a7e5c0c7f34e6bae73fd9ef5c6b2466e1e2e74
parentcd41924de38e850c8bd82ebae346e3c7ee771a7d (diff)
downloadgsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.tar
gsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.tar.gz
gsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.tar.bz2
gsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.tar.lz
gsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.tar.xz
gsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.tar.zst
gsoc2013-evolution-46b7c0bd86fbe4b979198e90d0020a14e3998b67.zip
the existence of libldap.la should have no bearing on whether or not we
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. svn path=/trunk/; revision=20666
-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