summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog2
-rw-r--r--configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 9a1d8d2..4d5480c 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,5 @@
Changes in quota-tools from 3.16 to 3.17
-* removed ssl from the list of LDAP libraries since we don't need it (Jan Kara)
+* removed ssl, resolv, lber from the list of LDAP libraries since we don't need them directly (Jan Kara)
Changes in quota-tools from 3.15 to 3.16
* added information message about journaled quota to quotacheck (Jan Kara, Alex Tomas)
diff --git a/configure.in b/configure.in
index 0277ae5..e228d2a 100644
--- a/configure.in
+++ b/configure.in
@@ -30,7 +30,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 -llber -lresolv"
+ LDAPLIBS="-L/usr/lib -lldap"
CFLAGS="$CFLAGS -DUSE_LDAP_MAIL_LOOKUP"
COMPILE_OPTS="$COMPILE_OPTS USE_LDAP_MAIL_LOOKUP"
if test "x$have_new_ldap" = "xyes"; then