diff options
author | Chris Toshok <toshok@ximian.com> | 2001-03-14 04:29:39 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-03-14 04:29:39 +0800 |
commit | ae7e62bf85724903f8acaf91809cb9624a6fefc1 (patch) | |
tree | 2560e818670f59c29380315eda25996371f72517 | |
parent | 56737afcb166d3b928f9a89d9ac9d76c079a575d (diff) | |
download | gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.tar gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.tar.gz gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.tar.bz2 gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.tar.lz gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.tar.xz gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.tar.zst gsoc2013-evolution-ae7e62bf85724903f8acaf91809cb9624a6fefc1.zip |
add -lresolv to LDAP_LIBS if it's there.
2001-03-13 Chris Toshok <toshok@ximian.com>
* configure.in: add -lresolv to LDAP_LIBS if it's there.
svn path=/trunk/; revision=8678
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2001-03-13 Chris Toshok <toshok@ximian.com> + + * configure.in: add -lresolv to LDAP_LIBS if it's there. + 2001-03-13 Iain Holmes <iain@ximian.com> * configure.in: Added the mail/importers dir. diff --git a/configure.in b/configure.in index 774d3cdd9d..c8c62ea26d 100644 --- a/configure.in +++ b/configure.in @@ -152,10 +152,12 @@ dnl * ldap related stuff. dnl ************************************************** AC_ARG_ENABLE(ldap, [ --enable-ldap=[no/yes] Enable LDAP support in evolution],,enable_ldap=no) -if test x$enable_ldap = xyes; then - AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="-llber") +if test x$enable_ldap = xyes; then + LDAP_LIBS= + AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="-lresolv") + AC_CHECK_LIB(lber, ber_get_tag, LDAP_LIBS="-llber $LDAP_LIBS", ,$LDAP_LIBS) if test x$ac_cv_lib_lber_ber_get_tag = xyes; then - AC_CHECK_LIB(ldap, ldap_open, LDAP_LIBS="-lldap $LDAP_LIBS", ,-llber) + AC_CHECK_LIB(ldap, ldap_open, LDAP_LIBS="-lldap $LDAP_LIBS", ,$LDAP_LIBS) fi fi |