From: Richard Levitte Date: Wed, 28 Jan 2009 07:38:14 +0000 (+0000) Subject: Because DEC C - sorry, HP C - is picky about features, we need to X-Git-Tag: OpenSSL_0_9_8k^2~54 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5871ddb01626e5ca3507fd171cf28b50305d6836;p=oweals%2Fopenssl.git Because DEC C - sorry, HP C - is picky about features, we need to define _XOPEN_SOURCE_EXTENDED to reach fd_set and timeval types and functionality. --- diff --git a/apps/ocsp.c b/apps/ocsp.c index 1ae4cf2ff7..6f36edcc52 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -57,6 +57,9 @@ */ #ifndef OPENSSL_NO_OCSP +#define _XOPEN_SOURCE_EXTENDED /* So fd_set and friends get properly defined + on OpenVMS */ + #include #include #include