summaryrefslogtreecommitdiffstats
path: root/libvncclient
diff options
context:
space:
mode:
Diffstat (limited to 'libvncclient')
-rw-r--r--libvncclient/listen.c4
-rw-r--r--libvncclient/sockets.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/libvncclient/listen.c b/libvncclient/listen.c
index e989d6a..8674b3f 100644
--- a/libvncclient/listen.c
+++ b/libvncclient/listen.c
@@ -25,7 +25,9 @@
#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#endif
+#if LIBVNCSERVER_HAVE_UNISTD_H
#include <unistd.h>
+#endif
#include <sys/types.h>
#ifdef WIN32
#define close closesocket
@@ -34,7 +36,9 @@
#include <sys/wait.h>
#include <sys/utsname.h>
#endif
+#if LIBVNCSERVER_HAVE_SYS_TIME_H
#include <sys/time.h>
+#endif
#include <rfb/rfbclient.h>
/*
diff --git a/libvncclient/sockets.c b/libvncclient/sockets.c
index 8ddfd9d..1019580 100644
--- a/libvncclient/sockets.c
+++ b/libvncclient/sockets.c
@@ -30,7 +30,9 @@
# define _POSIX_SOURCE
#endif
#endif
+#if LIBVNCSERVER_HAVE_UNISTD_H
#include <unistd.h>
+#endif
#include <errno.h>
#include <fcntl.h>
#include <assert.h>