mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [configure.ac] Fix brackets in NID_secp521r1 test.
This commit is contained in:
parent
37bcef51b3
commit
95cb2d4eb0
|
@ -8,6 +8,7 @@
|
||||||
NID_X9_62_prime256v1, NID_secp384r1 and NID_secp521r1 and test that the
|
NID_X9_62_prime256v1, NID_secp384r1 and NID_secp521r1 and test that the
|
||||||
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.
|
||||||
|
|
||||||
20131108
|
20131108
|
||||||
- (dtucker) OpenBSD CVS Sync
|
- (dtucker) OpenBSD CVS Sync
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.541 2013/11/09 07:39:25 dtucker Exp $
|
# $Id: configure.ac,v 1.542 2013/11/09 11:02:31 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.541 $)
|
AC_REVISION($Revision: 1.542 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
|
|
||||||
|
@ -2526,9 +2526,9 @@ AC_LINK_IFELSE(
|
||||||
[ AC_MSG_RESULT([yes])
|
[ AC_MSG_RESULT([yes])
|
||||||
enable_nistp521=1 ],
|
enable_nistp521=1 ],
|
||||||
[ AC_MSG_RESULT([no]) ],
|
[ AC_MSG_RESULT([no]) ],
|
||||||
[ AC_MSG_WARN([cross-compiling, assuming yes])
|
[ AC_MSG_WARN([cross-compiling: assuming yes])
|
||||||
enable_nistp521=1 ]
|
enable_nistp521=1 ]
|
||||||
])
|
)],
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue