diff options
author | Damien Miller <djm@mindrot.org> | 2000-05-01 20:54:17 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-05-01 20:54:17 +1000 |
commit | e59ce627a4149d39d7841f331d8111bdacc3b604 (patch) | |
tree | 172592300831c4773cb957d32e4bd904a9775527 | |
parent | 7c8af4fca8ab675245aa5532f80a2f06d6c080c1 (diff) |
- Include missing headers for OpenSSL tests. Fix from Phil Karn
<karn@ka9q.ampr.org>
-rw-r--r-- | CREDITS | 1 | ||||
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 5 insertions, 0 deletions
@@ -39,6 +39,7 @@ Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch | |||
39 | Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches | 39 | Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches |
40 | Peter Kocks <peter.kocks@baygate.com> - Makefile fixes | 40 | Peter Kocks <peter.kocks@baygate.com> - Makefile fixes |
41 | Phil Hands <phil@hands.com> - Debian scripts, assorted patches | 41 | Phil Hands <phil@hands.com> - Debian scripts, assorted patches |
42 | Phil Karn <karn@ka9q.ampr.org> - Autoconf fix | ||
42 | Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords | 43 | Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords |
43 | Tor-Ake Fransson <torake@hotmail.com> - AIX support | 44 | Tor-Ake Fransson <torake@hotmail.com> - AIX support |
44 | Tudor Bosman <tudorb@jm.nu> - MD5 password support | 45 | Tudor Bosman <tudorb@jm.nu> - MD5 password support |
@@ -2,6 +2,8 @@ | |||
2 | - OpenBSD CVS update | 2 | - OpenBSD CVS update |
3 | [packet.c] | 3 | [packet.c] |
4 | - send debug messages in SSH2 format | 4 | - send debug messages in SSH2 format |
5 | - Include missing headers for OpenSSL tests. Fix from Phil Karn | ||
6 | <karn@ka9q.ampr.org> | ||
5 | 7 | ||
6 | 20000430 | 8 | 20000430 |
7 | - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au> | 9 | - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au> |
diff --git a/configure.in b/configure.in index c533d4209..2e50df914 100644 --- a/configure.in +++ b/configure.in | |||
@@ -219,6 +219,8 @@ for ssldir in "" $tryssldir /usr/local/openssl /usr/lib/openssl /usr/local/ssl / | |||
219 | 219 | ||
220 | AC_TRY_RUN( | 220 | AC_TRY_RUN( |
221 | [ | 221 | [ |
222 | #include <string.h> | ||
223 | #include <openssl/rand.h> | ||
222 | #include <openssl/rsa.h> | 224 | #include <openssl/rsa.h> |
223 | #include <openssl/bn.h> | 225 | #include <openssl/bn.h> |
224 | #include <openssl/sha.h> | 226 | #include <openssl/sha.h> |