aboutsummaryrefslogtreecommitdiff
path: root/src/poll.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2015-06-24 16:51:28 +0200
committerAndreas Schneider <asn@cryptomilk.org>2015-06-24 17:13:19 +0200
commitef751a26d0cb746966aaee64cfb5d1a87efba535 (patch)
tree1e91f49bd03708cc8d077cbe1776065b9a751364 /src/poll.c
parent30a7229fc5f147c9f39abfa9272546773f58678c (diff)
downloadlibssh-ef751a26d0cb746966aaee64cfb5d1a87efba535.tar.gz
libssh-ef751a26d0cb746966aaee64cfb5d1a87efba535.tar.xz
libssh-ef751a26d0cb746966aaee64cfb5d1a87efba535.zip
misc: Correctly guard the sys/time.h include
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src/poll.c')
-rw-r--r--src/poll.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/poll.c b/src/poll.c
index 05faba75..807b0a56 100644
--- a/src/poll.c
+++ b/src/poll.c
@@ -116,7 +116,11 @@ static poll_fn ssh_poll_emu;
#else /* _WIN32 */
#include <sys/select.h>
#include <sys/socket.h>
-#include <sys/time.h>
+
+# ifdef HAVE_SYS_TIME_H
+# include <sys/time.h>
+# endif
+
#endif /* _WIN32 */
#ifdef HAVE_UNISTD_H