summaryrefslogtreecommitdiffstats
path: root/libvncclient
diff options
context:
space:
mode:
authordscho <dscho>2005-05-18 08:12:28 +0000
committerdscho <dscho>2005-05-18 08:12:28 +0000
commitee5244137266e2945b596f63ce4f60cfef6cdaf3 (patch)
treec04ef01921e633e910f6fdafa7ad335c53950b1e /libvncclient
parenta5524005d6c9f34facb3ff0aabced4e76fe314b0 (diff)
downloadlibtdevnc-ee5244137266e2945b596f63ce4f60cfef6cdaf3.tar.gz
libtdevnc-ee5244137266e2945b596f63ce4f60cfef6cdaf3.zip
hide strict ansi stuff if not explicitely turned on; actually use the socklen_t test from configure.ac
Diffstat (limited to 'libvncclient')
-rw-r--r--libvncclient/listen.c2
-rw-r--r--libvncclient/rfbproto.c2
-rw-r--r--libvncclient/sockets.c2
-rw-r--r--libvncclient/vncviewer.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/libvncclient/listen.c b/libvncclient/listen.c
index 7e0ed1d..7347a27 100644
--- a/libvncclient/listen.c
+++ b/libvncclient/listen.c
@@ -21,7 +21,9 @@
* listen.c - listen for incoming connections
*/
+#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
+#endif
#include <unistd.h>
#include <sys/types.h>
#ifdef __MINGW32__
diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c
index 72c06a1..211a478 100644
--- a/libvncclient/rfbproto.c
+++ b/libvncclient/rfbproto.c
@@ -23,8 +23,10 @@
* rfbproto.c - functions to deal with client side of RFB protocol.
*/
+#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#define _POSIX_SOURCE
+#endif
#include <unistd.h>
#include <errno.h>
#ifndef __MINGW32__
diff --git a/libvncclient/sockets.c b/libvncclient/sockets.c
index 977912d..6ee5a9d 100644
--- a/libvncclient/sockets.c
+++ b/libvncclient/sockets.c
@@ -21,7 +21,9 @@
* sockets.c - functions to deal with sockets.
*/
+#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
+#endif
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/libvncclient/vncviewer.c b/libvncclient/vncviewer.c
index 4427335..87c708d 100644
--- a/libvncclient/vncviewer.c
+++ b/libvncclient/vncviewer.c
@@ -21,8 +21,10 @@
* vncviewer.c - the Xt-based VNC viewer.
*/
+#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#define _POSIX_SOURCE
+#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>