From 5871ddb01626e5ca3507fd171cf28b50305d6836 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 28 Jan 2009 07:38:14 +0000 Subject: [PATCH] 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. --- apps/ocsp.c | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.25.1