diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-02-13 16:38:32 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-02-13 16:38:32 +1100 |
commit | 4a20959d2e3c90e9d66897c0b4032c785672d815 (patch) | |
tree | aa00a0f1a9106d0f4ff4905e350a5a668b576755 /configure.ac | |
parent | d1a7a9c0fd1ac2e3314cceb2891959fd2cd9eabb (diff) |
- (dtucker) [configure.ac openbsd-compat/openssl-compat.{c,h}] Add compat
code for older OpenSSL versions that don't have EVP_MD_CTX_copy_ex.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a350a2a55..0dd3f4541 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.569 2014/02/04 00:18:21 djm Exp $ | 1 | # $Id: configure.ac,v 1.570 2014/02/13 05:38:33 dtucker 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 | ||
17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) | 17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) |
18 | AC_REVISION($Revision: 1.569 $) | 18 | AC_REVISION($Revision: 1.570 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -2430,6 +2430,7 @@ AC_CHECK_FUNCS([ \ | |||
2430 | EVP_DigestFinal_ex \ | 2430 | EVP_DigestFinal_ex \ |
2431 | EVP_MD_CTX_init \ | 2431 | EVP_MD_CTX_init \ |
2432 | EVP_MD_CTX_cleanup \ | 2432 | EVP_MD_CTX_cleanup \ |
2433 | EVP_MD_CTX_copy_ex \ | ||
2433 | HMAC_CTX_init \ | 2434 | HMAC_CTX_init \ |
2434 | RSA_generate_key_ex \ | 2435 | RSA_generate_key_ex \ |
2435 | RSA_get_default_method \ | 2436 | RSA_get_default_method \ |