search for: ssl_library_ver

Displaying 3 results from an estimated 3 matches for "ssl_library_ver".

2016 Jan 04
2
OPenssl and dependencies such as openssh
...exit(1); if ((rc = fprintf(fd ,"%08x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0) exit(1); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ssl_library_ver=`cat conftest.ssllibver` # Check version is supported. case "$ssl_library_ver" in 0090[0-7]*|009080[0-5]*) as_fn_error $? "OpenSSL >= 0.9.8f requi red (have \&qu...
2018 Nov 22
3
OpenSSL 1.1.0j version checking bug in configure.ac [PATCH]
...anual/autoconf-2.66/html_node/Quadrigraphs.html diff --git a/configure.ac b/configure.ac index 7379ab35..dcf52230 100644 --- a/configure.ac +++ b/configure.ac @@ -2616,7 +2616,7 @@ if test "x$openssl" = "xyes" ; then AC_MSG_ERROR([OpenSSL >= 1.0.1 required (have "$ssl_library_ver")]) ;; 100*) ;; # 1.0.x - 101000[0123456]*) + 101000@<:@0123456@:>@*) # https://github.com/openssl/openssl/pull/4613 AC_MSG_ERROR([OpenSSL 1.1.x versions prior to 1.1.0g have a bug that breaks their use with OpenSSH (have "$ssl_library_ver&quot...
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...AC_MSG_ERROR(OpenSSL version header not found.) + ], + [ + ssl_header_ver="VERSION" + AC_MSG_WARN([Cannot run test when crosscompiling, defaulted to $ssl_header_ver]) ] ) @@ -1044,6 +1065,10 @@ [ AC_MSG_RESULT(not found) AC_MSG_ERROR(OpenSSL library not found.) + ], + [ + ssl_library_ver="VERSION" + AC_MSG_WARN([Cannot run test when crosscompiling, defaulted to $ssl_library_ver]) ] ) @@ -1063,7 +1088,12 @@ AC_MSG_ERROR([Your OpenSSL headers do not match your library. Check config.log for details. Also see contrib/findssl.sh for help identifying header/library m...