diff options
author | Ingela Anderton Andin <[email protected]> | 2017-04-03 11:32:15 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-04-07 11:07:37 +0200 |
commit | b2d2b2d39a27b09a3a70308460d3b870051364c4 (patch) | |
tree | 89c249daeaf0cc84e77b24e09b03d76c1ae5106a | |
parent | be2b0e6e5b4786cb6f7d56cdcdc05339aa214406 (diff) | |
download | otp-b2d2b2d39a27b09a3a70308460d3b870051364c4.tar.gz otp-b2d2b2d39a27b09a3a70308460d3b870051364c4.tar.bz2 otp-b2d2b2d39a27b09a3a70308460d3b870051364c4.zip |
erts: Update configure check for OpenSSL
We have never officially supported OpenSSL-0.9.7*
Update to OpenSSL-0.9.8c or later, but OpenSSL-1.0.2 or later is recommended
-rw-r--r-- | erts/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/configure.in b/erts/configure.in index 1c4a3e90ef..d6ee8ca1ac 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -4219,7 +4219,7 @@ case "$erl_xcomp_without_sysroot-$with_ssl" in fi - AC_MSG_CHECKING(for OpenSSL >= 0.9.7 in standard locations) + AC_MSG_CHECKING(for OpenSSL >= 0.9.8c in standard locations) for rdir in $extra_dir $std_win_ssl_locations $std_ssl_locations; do dir="$erl_xcomp_sysroot$rdir" if test -f "$erl_xcomp_isysroot$rdir/include/openssl/opensslv.h"; then @@ -4295,7 +4295,7 @@ case "$erl_xcomp_without_sysroot-$with_ssl" in CPPFLAGS=$SSL_INCLUDE AC_EGREP_CPP(^yes$,[ #include <openssl/opensslv.h> -#if OPENSSL_VERSION_NUMBER >= 0x0090700fL +#if OPENSSL_VERSION_NUMBER >= 0x0090803fL yes #endif ],[ |