openssh v4.7p1:
ThMO
thmo-13 at gmx.de
Sun Sep 30 19:50:06 EST 2007
Hello Darren and others,
I've appended a small, unified diff fixing a compilation
problem under Linux v2.0.35 using libc v5.4.46:
· atomicio.c:
<poll.h> ins't present, but <sys/poll.h> is available.
THX for listening.
CU Tom.
(Thomas M.Ott)
Germany
-------------- next part --------------
--- openssh-4.7p1/atomicio.c.orig 2007-06-25 14:15:12.000000000 +0200
+++ openssh-4.7p1/atomicio.c 2007-09-30 11:23:01.000000000 +0200
@@ -34,6 +34,8 @@
#include <errno.h>
#ifdef HAVE_POLL_H
#include <poll.h>
+#elif defined( __linux__)
+#include <sys/poll.h>
#endif
#include <string.h>
#include <unistd.h>
More information about the openssh-unix-dev
mailing list