diff options
author | dscho <dscho> | 2005-05-18 08:12:28 +0000 |
---|---|---|
committer | dscho <dscho> | 2005-05-18 08:12:28 +0000 |
commit | ee5244137266e2945b596f63ce4f60cfef6cdaf3 (patch) | |
tree | c04ef01921e633e910f6fdafa7ad335c53950b1e /libvncserver | |
parent | a5524005d6c9f34facb3ff0aabced4e76fe314b0 (diff) | |
download | libtdevnc-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 'libvncserver')
-rw-r--r-- | libvncserver/main.c | 2 | ||||
-rw-r--r-- | libvncserver/rfbserver.c | 2 | ||||
-rw-r--r-- | libvncserver/vncauth.c | 8 |
3 files changed, 9 insertions, 3 deletions
diff --git a/libvncserver/main.c b/libvncserver/main.c index 7c7bc3d..5cac343 100644 --- a/libvncserver/main.c +++ b/libvncserver/main.c @@ -10,7 +10,9 @@ * see GPL (latest version) for full details */ +#ifdef __STRICT_ANSI__ #define _BSD_SOURCE +#endif #include <rfb/rfb.h> #include <rfb/rfbregion.h> #include "private.h" diff --git a/libvncserver/rfbserver.c b/libvncserver/rfbserver.c index 22bdc98..745589e 100644 --- a/libvncserver/rfbserver.c +++ b/libvncserver/rfbserver.c @@ -24,7 +24,9 @@ * USA. */ +#ifdef __STRICT_ANSI__ #define _BSD_SOURCE +#endif #include <string.h> #include <rfb/rfb.h> #include <rfb/rfbregion.h> diff --git a/libvncserver/vncauth.c b/libvncserver/vncauth.c index 4c81d30..b8ee288 100644 --- a/libvncserver/vncauth.c +++ b/libvncserver/vncauth.c @@ -21,8 +21,13 @@ * vncauth.c - Functions for VNC password management and authentication. */ +#ifdef __STRICT_ANSI__ #define _BSD_SOURCE #define _POSIX_SOURCE +#endif +#ifdef LIBVNCSERVER_HAVE_SYS_TYPES_H +#include <sys/types.h> +#endif #include <stdio.h> #include <stdlib.h> #include <unistd.h> @@ -32,9 +37,6 @@ #include <string.h> #include <math.h> -#ifdef LIBVNCSERVER_HAVE_SYS_TYPES_H -#include <sys/types.h> -#endif #ifdef LIBVNCSERVER_HAVE_SYS_STAT_H #include <sys/stat.h> #endif |