diff options
author | Howard Chu <hyc@highlandsun.com> | 2010-05-28 12:23:28 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-28 12:23:28 +0200 |
commit | b1c1b9bb76e01900de6ffd7e173eec3d2c65a310 (patch) | |
tree | bc1a48e093e84f19331987e8f490acada718b52c /configure.ac | |
parent | 123f80ae5401bb4d8ab8e8ccdb6fda4ac76b0767 (diff) | |
download | curl-b1c1b9bb76e01900de6ffd7e173eec3d2c65a310.tar.gz |
LDAPS: list availability depending on SSL's presence
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index b0bc91cb9..774fd95ea 100644 --- a/configure.ac +++ b/configure.ac @@ -864,6 +864,7 @@ if test x$CURL_DISABLE_LDAP != x1 ; then curl_ldap_msg="enabled (OpenLDAP)" if test "x$ac_cv_func_ldap_init_fd" = x""yes; then AC_DEFINE(USE_OPENLDAP, 1, [Use OpenLDAP-specific code]) + AC_SUBST(USE_OPENLDAP, [1]) fi fi fi @@ -2700,11 +2701,11 @@ fi if test "x$CURL_DISABLE_TELNET" != "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS TELNET" fi -if test "x$CURL_DISABLE_LDAP" != "x1"; then +if test "x$CURL_DISABLE_LDAP" != "x1" -o "x$USE_OPENLDAP" = "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS LDAP" -fi -if test "x$CURL_DISABLE_LDAPS" != "x1"; then - SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS LDAPS" + if test "x$CURL_DISABLE_LDAPS" != "x1" -o "x$USE_OPENLDAP$SSL_ENABLED" = "x11"; then + SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS LDAPS" + fi fi if test "x$CURL_DISABLE_DICT" != "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS DICT" |