summaryrefslogtreecommitdiffstats
path: root/rfb
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 /rfb
parent882c8f34779ac88a544d3020a90a677042fa7067 (diff)
downloadlibtdevnc-dede3aea22640d9b036f358b228aa611da6bc0d9.tar.gz
libtdevnc-dede3aea22640d9b036f358b228aa611da6bc0d9.zip
Fix LibVNCClient compilation with MSVC 2014
Diffstat (limited to 'rfb')
-rw-r--r--rfb/rfbclient.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/rfb/rfbclient.h b/rfb/rfbclient.h
index 4f6f4f4..9fdb008 100644
--- a/rfb/rfbclient.h
+++ b/rfb/rfbclient.h
@@ -38,8 +38,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#if LIBVNCSERVER_HAVE_SYS_TIME_H
#include <sys/time.h>
+#endif
+#if LIBVNCSERVER_HAVE_UNISTD_H
#include <unistd.h>
+#endif
#include <rfb/rfbproto.h>
#include <rfb/keysym.h>