The apps/s_socket.c compiles with a warning "call to undefined function SHUTDOWN". The sollution is to move "#define USE_SOCKETS" before including e_os.h:
--- apps/s_socket.c.orig Fri Nov 22 09:00:22 2002 +++ apps/s_socket.c Thu Nov 28 14:42:56 2002 @@ -62,6 +62,8 @@ #include <errno.h> #include <signal.h> +#define USE_SOCKETS + #ifdef FLAT_INC #include "e_os.h" #else @@ -79,7 +81,6 @@ typedef unsigned int u_int; #endif -#define USE_SOCKETS #define NON_MAIN #include "apps.h" #undef USE_SOCKETS ----------------------------- Gisle V. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
