summaryrefslogtreecommitdiff
path: root/configure.in
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 /configure.in
parent76939b266a7ea73cdc0f8625aa6039fe57699d60 (diff)
Removed -ssl from the list of needed LDAP libraries (Jan Kara)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
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