- (dtucker) [configure.ac] Split AC_CHECK_FUNCS for OpenSSL functions into
separate lines and alphabetize for easier diffing of changes.
This commit is contained in:
parent
acad351a5b
commit
c548722361
|
@ -14,6 +14,8 @@
|
|||
#ifdef HAVE_STDINT_H.
|
||||
- (dtucker) [defines.h] Add typedefs for uintXX_t types for platforms that
|
||||
don't have them.
|
||||
- (dtucker) [configure.ac] Split AC_CHECK_FUNCS for OpenSSL functions into
|
||||
separate lines and alphabetize for easier diffing of changes.
|
||||
|
||||
20140118
|
||||
- (djm) OpenBSD CVS Sync
|
||||
|
|
12
configure.ac
12
configure.ac
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.ac,v 1.548 2014/01/16 22:53:24 dtucker Exp $
|
||||
# $Id: configure.ac,v 1.549 2014/01/17 04:12:16 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.548 $)
|
||||
AC_REVISION($Revision: 1.549 $)
|
||||
AC_CONFIG_SRCDIR([ssh.c])
|
||||
AC_LANG([C])
|
||||
|
||||
|
@ -2350,7 +2350,13 @@ AC_LINK_IFELSE(
|
|||
]
|
||||
)
|
||||
|
||||
AC_CHECK_FUNCS([RSA_generate_key_ex DSA_generate_parameters_ex BN_is_prime_ex RSA_get_default_method HMAC_CTX_init])
|
||||
AC_CHECK_FUNCS([ \
|
||||
BN_is_prime_ex \
|
||||
DSA_generate_parameters_ex \
|
||||
HMAC_CTX_init \
|
||||
RSA_generate_key_ex \
|
||||
RSA_get_default_method \
|
||||
])
|
||||
|
||||
AC_ARG_WITH([ssl-engine],
|
||||
[ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
|
||||
|
|
Loading…
Reference in New Issue