summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog3
-rw-r--r--configure.in2
2 files changed, 4 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index d3f5153..9a1d8d2 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,6 @@
+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)
+
Changes in quota-tools from 3.15 to 3.16
* added information message about journaled quota to quotacheck (Jan Kara, Alex Tomas)
* added pointers to quota_nld and warnquota to some manpages (Jan Kara)
diff --git a/configure.in b/configure.in
index d409e00..0277ae5 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 -lssl -lresolv"
+ LDAPLIBS="-L/usr/lib -lldap -llber -lresolv"
CFLAGS="$CFLAGS -DUSE_LDAP_MAIL_LOOKUP"
COMPILE_OPTS="$COMPILE_OPTS USE_LDAP_MAIL_LOOKUP"
if test "x$have_new_ldap" = "xyes"; then