diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-07-11 19:01:51 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-07-11 19:01:51 +1000 |
commit | e0e4aad1fdd8770283798eede1297f363b43498d (patch) | |
tree | edf9a71e9292a561ee4efcdd30bf0eebfb179c64 | |
parent | 2ee50c5cce20c67a4e67d2b56b1833ba4227975a (diff) |
- (dtucker) [entropy.c] More fcntl.h, this time on AIX (and probably
others).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | entropy.c | 8 |
2 files changed, 11 insertions, 1 deletions
@@ -2,6 +2,8 @@ | |||
2 | - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c | 2 | - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c |
3 | openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally | 3 | openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally |
4 | include paths.h. Fixes build error on Solaris. | 4 | include paths.h. Fixes build error on Solaris. |
5 | - (dtucker) [entropy.c] More fcntl.h, this time on AIX (and probably | ||
6 | others). | ||
5 | 7 | ||
6 | 20060710 | 8 | 20060710 |
7 | - (dtucker) [INSTALL] New autoconf version: 2.60. | 9 | - (dtucker) [INSTALL] New autoconf version: 2.60. |
@@ -4844,4 +4846,4 @@ | |||
4844 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 4846 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
4845 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 4847 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
4846 | 4848 | ||
4847 | $Id: ChangeLog,v 1.4386 2006/07/11 08:00:06 dtucker Exp $ | 4849 | $Id: ChangeLog,v 1.4387 2006/07/11 09:01:51 dtucker Exp $ |
@@ -27,6 +27,14 @@ | |||
27 | #include <sys/types.h> | 27 | #include <sys/types.h> |
28 | #include <sys/wait.h> | 28 | #include <sys/wait.h> |
29 | 29 | ||
30 | #ifdef HAVE_SYS_STAT_H | ||
31 | # include <sys/stat.h> | ||
32 | #endif | ||
33 | |||
34 | #ifdef HAVE_FCNTL_H | ||
35 | # include <fcntl.h> | ||
36 | #endif | ||
37 | |||
30 | #include <openssl/rand.h> | 38 | #include <openssl/rand.h> |
31 | #include <openssl/crypto.h> | 39 | #include <openssl/crypto.h> |
32 | #include <openssl/err.h> | 40 | #include <openssl/err.h> |