From 56dde3ebe6df8d925fa2465df9c87ed5506aa107 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 20 Feb 2001 13:11:54 +0000 Subject: Include opensslconf.h or the like early to make sure system macros get correctly defined. --- apps/s_socket.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'apps/s_socket.c') diff --git a/apps/s_socket.c b/apps/s_socket.c index c261abb361..f60d929484 100644 --- a/apps/s_socket.c +++ b/apps/s_socket.c @@ -62,6 +62,14 @@ #include #include +#define USE_SOCKETS +#define NON_MAIN +#include "apps.h" +#undef USE_SOCKETS +#undef NON_MAIN +#include "s_apps.h" +#include + /* With IPv6, it looks like Digital has mixed up the proper order of recursive header file inclusion, resulting in the compiler complaining that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which @@ -71,14 +79,6 @@ typedef unsigned int u_int; #endif -#define USE_SOCKETS -#define NON_MAIN -#include "apps.h" -#undef USE_SOCKETS -#undef NON_MAIN -#include "s_apps.h" -#include - static struct hostent *GetHostByName(char *name); #ifdef OPENSSL_SYS_WINDOWS static void sock_cleanup(void); -- cgit v1.2.1