summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2018-11-23 10:45:20 +1100
committerDamien Miller <djm@mindrot.org>2018-11-23 10:45:20 +1100
commit28c7b2cd050f4416bfcf3869a20e3ea138aa52fe (patch)
tree4ad1089b13345606aee87048959b92dde7bdbb8d /configure.ac
parent42c5ec4b97b6a1bae70f323952d0646af16ce710 (diff)
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@
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5a9b3ff1..14e7c4a6 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")])
;;