diff options
author | Eduardo Chappa <chappa@washington.edu> | 2013-08-04 22:05:02 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2013-08-04 22:05:02 -0600 |
commit | 68e60cfaa434ab6fa738949cca151b2d28252025 (patch) | |
tree | c1c3576af7b76b0d7db488c6ea58b8f2868f060a /configure | |
parent | 82ec113957d8297ed08c51c20cbc4b0a6f623d4e (diff) | |
download | alpine-68e60cfaa434ab6fa738949cca151b2d28252025.tar.xz |
* Set minimum version of Openssl to 1.0.1c.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -16419,8 +16419,8 @@ if test "$ac_res" != no; then : LIBS="$LIBS -lssl" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking Openssl library version >= 1.0" >&5 -$as_echo_n "checking Openssl library version >= 1.0... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking Openssl library version >= 1.0.0c" >&5 +$as_echo_n "checking Openssl library version >= 1.0.0c... " >&6; } if test "$cross_compiling" = yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cross compiling: not checking" >&5 @@ -16435,7 +16435,7 @@ else #include <openssl/ssl.h> int main(void) { - if (OPENSSL_VERSION_NUMBER >= 0x1000105fL) + if (OPENSSL_VERSION_NUMBER >= 0x1000003f) exit(0); exit(2); @@ -16449,7 +16449,7 @@ $as_echo "yes" >&6; } else - as_fn_error $? "Install openssl version >= 1.0.1e" "$LINENO" 5 + as_fn_error $? "Install openssl version >= 1.0.1c" "$LINENO" 5 exit 1 fi |