diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-09-28 19:40:20 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-09-28 19:40:20 +1000 |
commit | 23dd658e5701ba611229ca1a95dd3ab2c00fb316 (patch) | |
tree | 0eed70e42f50053d40737e7cf3b16ea79dd74fb8 | |
parent | b4b2f9a6c97b5fced719574e64e76fa56fac5613 (diff) |
- (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error
on Solaris 8 w/out /dev/random or prngd. Patch from rl at
math.technion.ac.il.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | entropy.c | 1 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20060928 | ||
2 | - (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error | ||
3 | on Solaris 8 w/out /dev/random or prngd. Patch from rl at | ||
4 | math.technion.ac.il. | ||
5 | |||
1 | 20060926 | 6 | 20060926 |
2 | - (dtucker) [bufaux.h] nuke bufaux.h; it's already gone from OpenBSD and not | 7 | - (dtucker) [bufaux.h] nuke bufaux.h; it's already gone from OpenBSD and not |
3 | referenced any more. ok djm@ | 8 | referenced any more. ok djm@ |
@@ -2497,4 +2502,4 @@ | |||
2497 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 2502 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
2498 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 2503 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
2499 | 2504 | ||
2500 | $Id: ChangeLog,v 1.4562 2006/09/28 09:08:32 dtucker Exp $ | 2505 | $Id: ChangeLog,v 1.4563 2006/09/28 09:40:20 dtucker Exp $ |
@@ -36,6 +36,7 @@ | |||
36 | #endif | 36 | #endif |
37 | #include <stdarg.h> | 37 | #include <stdarg.h> |
38 | #include <unistd.h> | 38 | #include <unistd.h> |
39 | #include <signal.h> | ||
39 | 40 | ||
40 | #include <openssl/rand.h> | 41 | #include <openssl/rand.h> |
41 | #include <openssl/crypto.h> | 42 | #include <openssl/crypto.h> |