From a377811f159f0f4965fca5acb597118715e705a7 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 24 Jan 2010 16:57:38 +0000 Subject: PR: 2153, 2125 Submitted by: steve@openssl.org The original fix for PR#2125 broke compilation on some Unixware platforms: revert and make conditional on VMS. --- ssl/ssltest.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ssl/ssltest.c') diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 79735126fc..abf214ad7f 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -143,9 +143,6 @@ #define _BSD_SOURCE 1 /* Or gethostname won't be declared properly on Linux and GNU platforms. */ -#define _XOPEN_SOURCE 500 /* Or isascii won't be declared properly on - VMS (at least with DECompHP C). */ - #include #include #include @@ -157,6 +154,11 @@ #define USE_SOCKETS #include "e_os.h" +#ifdef OPENSSL_SYS_VMS +#define _XOPEN_SOURCE 500 /* Or isascii won't be declared properly on + VMS (at least with DECompHP C). */ +#endif + #include #include -- cgit v1.2.3