Remove useless feature test macros

pull/12/head
Andri Yngvason 2022-06-05 13:28:24 +00:00
parent 9a2a318991
commit d4faccba28
6 changed files with 3 additions and 45 deletions

View File

@ -71,11 +71,6 @@
#endif #endif
#endif #endif
/* MS compilers don't have strncasecmp */
#ifdef _MSC_VER
#define strncasecmp _strnicmp
#endif
#define rfbMax(a,b) (((a)>(b))?(a):(b)) #define rfbMax(a,b) (((a)>(b))?(a):(b))
#include <sys/time.h> #include <sys/time.h>
#include <netinet/in.h> #include <netinet/in.h>

View File

@ -21,12 +21,7 @@
* vncauth.c - Functions for VNC password management and authentication. * vncauth.c - Functions for VNC password management and authentication.
*/ */
#include <rfb/rfbproto.h> #include "rfb/rfbproto.h"
#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#define _POSIX_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include <sys/types.h> #include <sys/types.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -24,11 +24,6 @@
* rfbproto.c - functions to deal with client side of RFB protocol. * rfbproto.c - functions to deal with client side of RFB protocol.
*/ */
#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#define _POSIX_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include <unistd.h> #include <unistd.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

View File

@ -29,14 +29,8 @@
* sasl.c - functions to deal with client side of the SASL protocol. * sasl.c - functions to deal with client side of the SASL protocol.
*/ */
#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#define _POSIX_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include <errno.h> #include <errno.h>
#include <rfb/rfbclient.h> #include "rfb/rfbclient.h"
#include "sockets.h" #include "sockets.h"
@ -44,10 +38,6 @@
#include "tls.h" #include "tls.h"
#ifdef _MSC_VER
# define snprintf _snprintf /* MSVC went straight to the underscored syntax */
#endif
/* /*
* NB, keep in sync with similar method in qemud/remote.c * NB, keep in sync with similar method in qemud/remote.c
*/ */

View File

@ -23,14 +23,6 @@
* sockets.c - functions to deal with sockets. * sockets.c - functions to deal with sockets.
*/ */
#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#ifdef __linux__
/* Setting this on other systems hides definitions such as INADDR_LOOPBACK.
* The check should be for __GLIBC__ in fact. */
# define _POSIX_SOURCE
#endif
#endif
#include <unistd.h> #include <unistd.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>

View File

@ -20,20 +20,11 @@
/* /*
* vncviewer.c - the Xt-based VNC viewer. * vncviewer.c - the Xt-based VNC viewer.
*/ */
#ifdef _MSC_VER
#define strdup _strdup /* Prevent POSIX deprecation warnings */
#endif
#ifdef __STRICT_ANSI__
#define _BSD_SOURCE
#define _POSIX_SOURCE
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include <rfb/rfbclient.h> #include "rfb/rfbclient.h"
#include "tls.h" #include "tls.h"
static void Dummy(rfbClient* client) { static void Dummy(rfbClient* client) {