diff options
author | Christian Beier <[email protected]> | 2016-05-30 12:16:54 +0200 |
---|---|---|
committer | Christian Beier <[email protected]> | 2016-05-30 12:16:54 +0200 |
commit | ddabcb67a630d5b8e73cdce6d78f9413b36b742b (patch) | |
tree | 6542861c237fc2b29c1b73f339b0fe0e881d2ea8 /rfb | |
parent | 475a2c944731aa5c578f1fc4aba51a3ae0069c2d (diff) | |
parent | 6fabf75f9ce7adb565ca4c02d03ba3cccae36759 (diff) | |
download | libtdevnc-ddabcb67a630d5b8e73cdce6d78f9413b36b742b.tar.gz libtdevnc-ddabcb67a630d5b8e73cdce6d78f9413b36b742b.zip |
Merge pull request #105 from cgeorges82/master
fix for issue #97. Also, this fixes cmake builds for other platforms.
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfbconfig.h.cmake | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/rfb/rfbconfig.h.cmake b/rfb/rfbconfig.h.cmake index 3e3155b..5bd6569 100644 --- a/rfb/rfbconfig.h.cmake +++ b/rfb/rfbconfig.h.cmake @@ -54,6 +54,27 @@ /* Define to 1 if you have the <unistd.h> header file. */ #cmakedefine LIBVNCSERVER_HAVE_UNISTD_H 1 +/* Define to 1 if you have the `vfork' function. */ +#cmakedefine LIBVNCSERVER_HAVE_VFORK 1 + +/* Define to 1 if you have the <vfork.h> header file. */ +#cmakedefine LIBVNCSERVER_HAVE_VFORK_H 1 + +/* Define to 1 if you have the `vprintf' function. */ +#cmakedefine LIBVNCSERVER_HAVE_VPRINTF 1 + +/* Define to 1 if `fork' works. */ +#cmakedefine LIBVNCSERVER_HAVE_WORKING_FORK 1 + +/* Define to 1 if `vfork' works. */ +#cmakedefine LIBVNCSERVER_HAVE_WORKING_VFORK 1 + +/* Define to 1 if you have the <ws2tcpip.h> header file. */ +#cmakedefine LIBVNCSERVER_HAVE_WS2TCPIP_H 1 + +/* Enable IPv6 support */ +#cmakedefine LIBVNCSERVER_IPv6 1 + /* Need a typedef for in_addr_t */ #cmakedefine LIBVNCSERVER_NEED_INADDR_T 1 |