summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac8
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d9f507d40..9330c8057 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120140822
2 - (djm) [configure.ac] include leading zero characters in OpenSSL version
3 number; fixes test for unsupported versions
4
120140821 520140821
2 - (djm) [Makefile.in] fix reference to libtest_helper.a in sshkey test too. 6 - (djm) [Makefile.in] fix reference to libtest_helper.a in sshkey test too.
3 - (djm) [key.h] Fix ifdefs for no-ECC OpenSSL 7 - (djm) [key.h] Fix ifdefs for no-ECC OpenSSL
diff --git a/configure.ac b/configure.ac
index 11e8e12e0..479d4c71d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.579 2014/08/20 01:05:03 djm Exp $ 1# $Id: configure.ac,v 1.580 2014/08/22 07:36:20 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
17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) 17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
18AC_REVISION($Revision: 1.579 $) 18AC_REVISION($Revision: 1.580 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -2243,7 +2243,7 @@ AC_RUN_IFELSE(
2243 if(fd == NULL) 2243 if(fd == NULL)
2244 exit(1); 2244 exit(1);
2245 2245
2246 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0) 2246 if ((rc = fprintf(fd ,"%08x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
2247 exit(1); 2247 exit(1);
2248 2248
2249 exit(0); 2249 exit(0);
@@ -2278,7 +2278,7 @@ AC_RUN_IFELSE(
2278 if(fd == NULL) 2278 if(fd == NULL)
2279 exit(1); 2279 exit(1);
2280 2280
2281 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), 2281 if ((rc = fprintf(fd ,"%08x (%s)\n", SSLeay(),
2282 SSLeay_version(SSLEAY_VERSION))) <0) 2282 SSLeay_version(SSLEAY_VERSION))) <0)
2283 exit(1); 2283 exit(1);
2284 2284