summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2008-03-19 15:34:02 +0000
committerjkar8572 <jkar8572>2008-03-19 15:34:02 +0000
commitae07711646bce5f5eb9e2758d02c0d193ee1a921 (patch)
treed42a3f0a26b0e5d879f9df99792f29ba312017fe
parent76939b266a7ea73cdc0f8625aa6039fe57699d60 (diff)
Removed -ssl from the list of needed LDAP libraries (Jan Kara)
-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