mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-03-11 09:17:38 +00:00
- (dtucker) [configure.ac] Add missing "test".
This commit is contained in:
parent
95cb2d4eb0
commit
dd5264db5f
@ -9,6 +9,7 @@
|
|||||||
latter actually works before using it. Fedora (at least) has NID_secp521r1
|
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).
|
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] Fix brackets in NID_secp521r1 test.
|
||||||
|
- (dtucker) [configure.ac] Add missing "test".
|
||||||
|
|
||||||
20131108
|
20131108
|
||||||
- (dtucker) OpenBSD CVS Sync
|
- (dtucker) OpenBSD CVS Sync
|
||||||
|
@ -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
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
@ -15,7 +15,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
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_CONFIG_SRCDIR([ssh.c])
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
|
|
||||||
@ -2536,7 +2536,7 @@ COMMENT_OUT_ECC="#no ecc#"
|
|||||||
TEST_SSH_ECC=no
|
TEST_SSH_ECC=no
|
||||||
|
|
||||||
if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \
|
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])
|
AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC])
|
||||||
fi
|
fi
|
||||||
if test x$enable_nistp256 = x1; then
|
if test x$enable_nistp256 = x1; then
|
||||||
|
Loading…
Reference in New Issue
Block a user