diff options
author | Christian Beier <dontmind@freeshell.org> | 2009-10-02 14:44:10 +0200 |
---|---|---|
committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2009-10-02 16:54:38 +0200 |
commit | a92f7f46a675a3533a0a89b6fe2d509e43a2aa8f (patch) | |
tree | f411e78a3f33d32c1b09e89f7f707be6d4b77c61 /libvncclient/rfbproto.c | |
parent | 65b68e668284eb4aa18614db21cd8d393e37d0c0 (diff) | |
download | libtdevnc-a92f7f46a675a3533a0a89b6fe2d509e43a2aa8f.tar.gz libtdevnc-a92f7f46a675a3533a0a89b6fe2d509e43a2aa8f.zip |
mingw32 crosscompile fixes.
SOCKET is redefined in winsock2.h so #undef it where winsock2.h
is included. The changes in rfbproto.c circumvent crosscompiler
errors like 'S_IFMT' undeclared ...', the Makefile.am changes
avoid building linux specific stuff for a win32 host target.
Also added configure option to specify sdl-config.
Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'libvncclient/rfbproto.c')
-rw-r--r-- | libvncclient/rfbproto.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c index fb724f5..9d180ce 100644 --- a/libvncclient/rfbproto.c +++ b/libvncclient/rfbproto.c @@ -344,6 +344,7 @@ DefaultSupportedMessagesTightVNC(rfbClient* client) SetServer2Client(client, rfbTextChat); } +#ifndef WIN32 static rfbBool IsUnixSocket(const char *name) { @@ -352,6 +353,7 @@ IsUnixSocket(const char *name) return TRUE; return FALSE; } +#endif /* * ConnectToRFBServer. |