aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-04-15 00:50:40 +0800
committerChris Toshok <toshok@src.gnome.org>2000-04-15 00:50:40 +0800
commitb3f264a271047021c05398592160979c6b3d2660 (patch)
tree5ea5b44da077e036b37af72801aa607331a5a880
parentff436c34dc8bf72217a93f68ef2808c03a2404f5 (diff)
downloadgsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.tar
gsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.tar.gz
gsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.tar.bz2
gsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.tar.lz
gsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.tar.xz
gsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.tar.zst
gsoc2013-evolution-b3f264a271047021c05398592160979c6b3d2660.zip
quiet configure in the case where it can't find ldap libs.
* configure.in: quiet configure in the case where it can't find ldap libs. svn path=/trunk/; revision=2428
-rw-r--r--ChangeLog5
-rw-r--r--configure.in6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0db0865385..b8edd94dca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-14 Chris Toshok <toshok@helixcode.com>
+
+ * configure.in: quiet configure in the case where it can't find
+ ldap libs.
+
2000-04-13 Christopher James Lahey <clahey@helixcode.com>
* addressbook/contact-editor/e-contact-editor.c (extract_info):
diff --git a/configure.in b/configure.in
index 75ce24caed..d39d3e011e 100644
--- a/configure.in
+++ b/configure.in
@@ -92,16 +92,16 @@ dnl **************************************************
dnl * ldap related stuff.
dnl **************************************************
AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="-llber")
-if test $ac_cv_lib_lber_ber_get_tag = yes; then
+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
-if test $ac_cv_lib_ldap_ldap_open = yes; then
+if test x$ac_cv_lib_ldap_ldap_open = xyes; then
AC_DEFINE(HAVE_LDAP)
AC_SUBST(LDAP_LIBS)
else
AC_MSG_WARN(no ldap support present)
fi
-AM_CONDITIONAL(ENABLE_LDAP, test $ac_cv_lib_ldap_ldap_open = yes)
+AM_CONDITIONAL(ENABLE_LDAP, test x$ac_cv_lib_ldap_ldap_open = xyes)
dnl **************************************************
dnl * Posix thread support