diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-05-18 10:05:36 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-05-18 16:23:17 +0200 |
commit | 7b6d771a193f21be93e6f70a85b0ad03f6ab8bcb (patch) | |
tree | e352f0d1e1f309ba39e0efd6cf1ea480ce3ef7c5 /m4 | |
parent | 93b3970ad47f66a621be1581c1f98fe960a5a5cc (diff) | |
download | curl-7b6d771a193f21be93e6f70a85b0ad03f6ab8bcb.tar.gz |
wolfssl: remove SSLv3 support leftovers
Closes #7088
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-wolfssl.m4 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/m4/curl-wolfssl.m4 b/m4/curl-wolfssl.m4 index ada65726c..b3e4b9511 100644 --- a/m4/curl-wolfssl.m4 +++ b/m4/curl-wolfssl.m4 @@ -124,12 +124,10 @@ if test "x$OPT_WOLFSSL" != xno; then LIBS="$addlib -lm $LIBS" - dnl Recent WolfSSL versions build without SSLv3 by default dnl WolfSSL needs configure --enable-opensslextra to have *get_peer* dnl DES* is needed for NTLM support and lives in the OpenSSL compatibility dnl layer - AC_CHECK_FUNCS(wolfSSLv3_client_method \ - wolfSSL_get_peer_certificate \ + AC_CHECK_FUNCS(wolfSSL_get_peer_certificate \ wolfSSL_UseALPN ) dnl if this symbol is present, we want the include path to include the |