diff options
author | Darren Tucker <dtucker@zip.com.au> | 2008-02-29 15:07:01 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2008-02-29 15:07:01 +1100 |
commit | ccb13eedd731cfd1ee9bf748a1ac37cd64b915ef (patch) | |
tree | 038bbb38fb10edb82f5b03e85ef4c645f3b079e4 | |
parent | 7ec87332472340d468aff0f41e0f4e99faf5dda3 (diff) |
- (dtucker) [scp.c] Include sys/poll.h inside HAVE_SYS_POLL_H.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | scp.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -3,6 +3,7 @@ | |||
3 | configure (and there's not much point, as openssh won't work without it) | 3 | configure (and there's not much point, as openssh won't work without it) |
4 | so HAVE_SELECT is not defined and the poll(2) compat code doesn't get | 4 | so HAVE_SELECT is not defined and the poll(2) compat code doesn't get |
5 | built in. Remove HAVE_SELECT so we can build on platforms without poll. | 5 | built in. Remove HAVE_SELECT so we can build on platforms without poll. |
6 | - (dtucker) [scp.c] Include sys/poll.h inside HAVE_SYS_POLL_H. | ||
6 | 7 | ||
7 | 20080228 | 8 | 20080228 |
8 | - (dtucker) [configure.ac] Add -fstack-protector to LDFLAGS too, fixes | 9 | - (dtucker) [configure.ac] Add -fstack-protector to LDFLAGS too, fixes |
@@ -3650,4 +3651,4 @@ | |||
3650 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 3651 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
3651 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 3652 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
3652 | 3653 | ||
3653 | $Id: ChangeLog,v 1.4847 2008/02/29 02:57:47 dtucker Exp $ | 3654 | $Id: ChangeLog,v 1.4848 2008/02/29 04:07:01 dtucker Exp $ |
@@ -78,7 +78,9 @@ | |||
78 | #ifdef HAVE_SYS_STAT_H | 78 | #ifdef HAVE_SYS_STAT_H |
79 | # include <sys/stat.h> | 79 | # include <sys/stat.h> |
80 | #endif | 80 | #endif |
81 | #ifdef HAVE_SYS_POLL_H | ||
81 | # include <sys/poll.h> | 82 | # include <sys/poll.h> |
83 | #endif | ||
82 | #ifdef HAVE_SYS_TIME_H | 84 | #ifdef HAVE_SYS_TIME_H |
83 | # include <sys/time.h> | 85 | # include <sys/time.h> |
84 | #endif | 86 | #endif |