diff options
author | Chris Toshok <toshok@src.gnome.org> | 2000-04-15 00:50:40 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-04-15 00:50:40 +0800 |
commit | b3f264a271047021c05398592160979c6b3d2660 (patch) | |
tree | 5ea5b44da077e036b37af72801aa607331a5a880 /configure.in | |
parent | ff436c34dc8bf72217a93f68ef2808c03a2404f5 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
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 |