diff options
author | Zenju <zenju@gmx.de> | 2019-07-09 11:24:41 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-07-14 16:24:46 +0200 |
commit | 7e8f1916d6d90b6b2a68833846a52e1ea9dbb309 (patch) | |
tree | 94b4f6198b826ed3e71532ce84aaa43895206ca1 /configure.ac | |
parent | 855887af7928d70a2938b7c9c750a0c237c47c15 (diff) | |
download | curl-7e8f1916d6d90b6b2a68833846a52e1ea9dbb309.tar.gz |
openssl: define HAVE_SSL_GET_SHUTDOWN based on version number
Closes #4100
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index dc97ba108..cbf038080 100755 --- a/configure.ac +++ b/configure.ac @@ -1826,13 +1826,9 @@ if test -z "$ssl_backends" -o "x$OPT_SSL" != xno && if test X"$OPENSSL_ENABLED" = X"1"; then dnl These can only exist if OpenSSL exists - dnl Older versions of Cyassl (some time before 2.9.4) don't have - dnl SSL_get_shutdown (but this check won't actually detect it there - dnl as it's a macro that needs the header files be included) dnl OpenSSL_version is introduced in 3.0.0 AC_CHECK_FUNCS( RAND_egd \ - SSL_get_shutdown \ SSLv2_client_method \ OpenSSL_version ) |