summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2008-03-19 16:28:39 +0000
committerjkar8572 <jkar8572>2008-03-19 16:28:39 +0000
commit6f1dfbf21ca1a5a08363a86fcb3b978bff11b078 (patch)
tree2ce0a6ca4d2666207982a150efb4f7c5bdb2acf4
parentae07711646bce5f5eb9e2758d02c0d193ee1a921 (diff)
Removed also resolv and lber. (Jan Kara)
-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