diff options
author | Damien Miller <djm@mindrot.org> | 2014-08-22 18:06:20 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-08-22 18:06:20 +1000 |
commit | 394a60f2598d28b670d934b93942a3370b779b39 (patch) | |
tree | c381201367e121d68ae6642942aed8e3eba85e2b /configure.ac | |
parent | 4d69aeabd6e60afcdc7cca177ca751708ab79a9d (diff) |
- (djm) [configure.ac] double braces to appease autoconf
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 479d4c71d..d93cc6b49 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.580 2014/08/22 07:36:20 djm Exp $ | 1 | # $Id: configure.ac,v 1.581 2014/08/22 08:06:21 djm Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) | 17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) |
18 | AC_REVISION($Revision: 1.580 $) | 18 | AC_REVISION($Revision: 1.581 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -2288,7 +2288,7 @@ AC_RUN_IFELSE( | |||
2288 | ssl_library_ver=`cat conftest.ssllibver` | 2288 | ssl_library_ver=`cat conftest.ssllibver` |
2289 | # Check version is supported. | 2289 | # Check version is supported. |
2290 | case "$ssl_library_ver" in | 2290 | case "$ssl_library_ver" in |
2291 | 0090[0-7]*|009080[0-5]*) | 2291 | 0090[[0-7]]*|009080[[0-5]]*) |
2292 | AC_MSG_ERROR([OpenSSL >= 0.9.8f required]) | 2292 | AC_MSG_ERROR([OpenSSL >= 0.9.8f required]) |
2293 | ;; | 2293 | ;; |
2294 | *) ;; | 2294 | *) ;; |