diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-10-29 20:48:29 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-10-29 22:38:39 +0100 |
commit | e62e77426f3c71311dd1522ceb59b1c7298da105 (patch) | |
tree | b33c112482ef0fa7170690d4fd53851d172d6596 | |
parent | e102478b3de1d42cd1fcaf004d7c773730ea00e5 (diff) |
configure.ac: remove checks for OpenSSL NPN/ALPN funcs again
... since the conditional in the code are now based on OpenSSL versions
instead to better support non-configure builds.
-rw-r--r-- | configure.ac | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index d51c7e5e8..ae57a52cd 100644 --- a/configure.ac +++ b/configure.ac @@ -1570,10 +1570,7 @@ if test "$curl_ssl_msg" = "$init_ssl_msg" && test X"$OPT_SSL" != Xno; then ENGINE_cleanup \ CRYPTO_cleanup_all_ex_data \ SSL_get_shutdown \ - SSLv2_client_method \ - SSL_CTX_set_next_proto_select_cb \ - SSL_CTX_set_alpn_protos \ - SSL_CTX_set_alpn_select_cb ) + SSLv2_client_method ) dnl Make an attempt to detect if this is actually yassl's headers and dnl OpenSSL emulation layer. We still leave everything else believing |