summaryrefslogtreecommitdiffstats
path: root/libvncclient
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2017-01-28 17:59:52 +0100
committerChristian Beier <dontmind@freeshell.org>2017-01-28 17:59:52 +0100
commitdede3aea22640d9b036f358b228aa611da6bc0d9 (patch)
treea0cfea7cc30af4f293cff1f9db9c7802be008551 /libvncclient
parent882c8f34779ac88a544d3020a90a677042fa7067 (diff)
downloadlibtdevnc-dede3aea22640d9b036f358b228aa611da6bc0d9.tar.gz
libtdevnc-dede3aea22640d9b036f358b228aa611da6bc0d9.zip
Fix LibVNCClient compilation with MSVC 2014
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>