diff options
-rw-r--r-- | vnc.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ #include <X11/Xlib.h> -#include <rfb/rfbclient.h> +#ifdef HAVE_VNC +# include <rfb/rfbclient.h> +#else +typedef struct { int dummy } rfbClient; +#endif struct vnc_window { /* vnc connection */ |