From: Damien Miller Date: Thu, 22 Nov 2018 23:45:20 +0000 (+1100) Subject: fix configure test for OpenSSL version X-Git-Tag: V_8_0_P1~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28c7b2cd050f4416bfcf3869a20e3ea138aa52fe;p=thirdparty%2Fopenssh-portable.git fix configure test for OpenSSL version square brackets in case statements may be eaten by autoconf. Report and fix from Filipp Gunbin; tweaked by naddy@ --- diff --git a/configure.ac b/configure.ac index 5a9b3ff11..14e7c4a61 100644 --- a/configure.ac +++ b/configure.ac @@ -2612,7 +2612,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")]) ;;