summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-01 20:54:17 +1000
committerDamien Miller <djm@mindrot.org>2000-05-01 20:54:17 +1000
commite59ce627a4149d39d7841f331d8111bdacc3b604 (patch)
tree172592300831c4773cb957d32e4bd904a9775527
parent7c8af4fca8ab675245aa5532f80a2f06d6c080c1 (diff)
- Include missing headers for OpenSSL tests. Fix from Phil Karn
<karn@ka9q.ampr.org>
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog2
-rw-r--r--configure.in2
3 files changed, 5 insertions, 0 deletions
diff --git a/CREDITS b/CREDITS
index 1edf82120..470480842 100644
--- a/CREDITS
+++ b/CREDITS
@@ -39,6 +39,7 @@ Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch
39Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches 39Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches
40Peter Kocks <peter.kocks@baygate.com> - Makefile fixes 40Peter Kocks <peter.kocks@baygate.com> - Makefile fixes
41Phil Hands <phil@hands.com> - Debian scripts, assorted patches 41Phil Hands <phil@hands.com> - Debian scripts, assorted patches
42Phil Karn <karn@ka9q.ampr.org> - Autoconf fix
42Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords 43Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords
43Tor-Ake Fransson <torake@hotmail.com> - AIX support 44Tor-Ake Fransson <torake@hotmail.com> - AIX support
44Tudor Bosman <tudorb@jm.nu> - MD5 password support 45Tudor Bosman <tudorb@jm.nu> - MD5 password support
diff --git a/ChangeLog b/ChangeLog
index 7fe9389c9..bdb69ea9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
620000430 820000430
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>