diff options
author | Christian Beier <dontmind@freeshell.org> | 2017-01-28 17:59:52 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2017-01-28 17:59:52 +0100 |
commit | dede3aea22640d9b036f358b228aa611da6bc0d9 (patch) | |
tree | a0cfea7cc30af4f293cff1f9db9c7802be008551 /rfb/rfbclient.h | |
parent | 882c8f34779ac88a544d3020a90a677042fa7067 (diff) | |
download | libtdevnc-dede3aea22640d9b036f358b228aa611da6bc0d9.tar.gz libtdevnc-dede3aea22640d9b036f358b228aa611da6bc0d9.zip |
Fix LibVNCClient compilation with MSVC 2014
Diffstat (limited to 'rfb/rfbclient.h')
-rw-r--r-- | rfb/rfbclient.h | 4 |
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> |