mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
- (dtucker) [scp.c] Include sys/poll.h inside HAVE_SYS_POLL_H.
This commit is contained in:
parent
7ec8733247
commit
ccb13eedd7
@ -3,6 +3,7 @@
|
|||||||
configure (and there's not much point, as openssh won't work without it)
|
configure (and there's not much point, as openssh won't work without it)
|
||||||
so HAVE_SELECT is not defined and the poll(2) compat code doesn't get
|
so HAVE_SELECT is not defined and the poll(2) compat code doesn't get
|
||||||
built in. Remove HAVE_SELECT so we can build on platforms without poll.
|
built in. Remove HAVE_SELECT so we can build on platforms without poll.
|
||||||
|
- (dtucker) [scp.c] Include sys/poll.h inside HAVE_SYS_POLL_H.
|
||||||
|
|
||||||
20080228
|
20080228
|
||||||
- (dtucker) [configure.ac] Add -fstack-protector to LDFLAGS too, fixes
|
- (dtucker) [configure.ac] Add -fstack-protector to LDFLAGS too, fixes
|
||||||
@ -3650,4 +3651,4 @@
|
|||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4847 2008/02/29 02:57:47 dtucker Exp $
|
$Id: ChangeLog,v 1.4848 2008/02/29 04:07:01 dtucker Exp $
|
||||||
|
2
scp.c
2
scp.c
@ -78,7 +78,9 @@
|
|||||||
#ifdef HAVE_SYS_STAT_H
|
#ifdef HAVE_SYS_STAT_H
|
||||||
# include <sys/stat.h>
|
# include <sys/stat.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_SYS_POLL_H
|
||||||
# include <sys/poll.h>
|
# include <sys/poll.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_SYS_TIME_H
|
#ifdef HAVE_SYS_TIME_H
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user