diff options
author | jkar8572 <jkar8572> | 2010-01-06 14:50:40 +0000 |
---|---|---|
committer | jkar8572 <jkar8572> | 2010-01-06 14:50:40 +0000 |
commit | 458809b95cedcbd64334d28df53af23412a94779 (patch) | |
tree | 3c11401021917f49a51a7667ce347e14798fa600 /configure.in | |
parent | 6928d9d0a8f26e966f514f4e93c9a5a67f39c64b (diff) | |
download | linuxquota-458809b95cedcbd64334d28df53af23412a94779.tar.gz |
* added liblber to the list of libraries needed for LDAP support (Michael Meskes)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7d1986a..5090623 100644 --- a/configure.in +++ b/configure.in @@ -31,7 +31,7 @@ if test "x$enable_ldapmail" != "xno"; then have_old_ldap="no" AC_CHECK_LIB(ldap, ldap_initialize, have_new_ldap="yes", AC_CHECK_LIB(ldap, ldap_init, have_old_ldap="yes")) if test "x$have_new_ldap" != "xno" -o "x$have_old_ldap" != "xno"; then - LDAPLIBS="-L/usr/lib -lldap" + LDAPLIBS="-L/usr/lib -lldap -llber" AC_DEFINE([USE_LDAP_MAIL_LOOKUP], 1, [Lookup email address using LDAP]) COMPILE_OPTS="$COMPILE_OPTS USE_LDAP_MAIL_LOOKUP" if test "x$have_new_ldap" = "xyes"; then |