- (dtucker) [configure.ac] Add missing "test".

This commit is contained in:
Darren Tucker 2013-11-09 22:32:51 +11:00
parent 95cb2d4eb0
commit dd5264db5f
2 changed files with 4 additions and 3 deletions

View File

@ -9,6 +9,7 @@
latter actually works before using it. Fedora (at least) has NID_secp521r1
that doesn't work (see https://bugzilla.redhat.com/show_bug.cgi?id=1021897).
- (dtucker) [configure.ac] Fix brackets in NID_secp521r1 test.
- (dtucker) [configure.ac] Add missing "test".
20131108
- (dtucker) OpenBSD CVS Sync

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.542 2013/11/09 11:02:31 dtucker Exp $
# $Id: configure.ac,v 1.543 2013/11/09 11:32:51 dtucker Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@ -15,7 +15,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
AC_REVISION($Revision: 1.542 $)
AC_REVISION($Revision: 1.543 $)
AC_CONFIG_SRCDIR([ssh.c])
AC_LANG([C])
@ -2536,7 +2536,7 @@ COMMENT_OUT_ECC="#no ecc#"
TEST_SSH_ECC=no
if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \
x$enable_nistp521 = x1; then
test x$enable_nistp521 = x1; then
AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC])
fi
if test x$enable_nistp256 = x1; then