From 8bbf6bcf174abd83d2baa5676ead3ea946d067ea Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 25 Dec 2006 10:54:14 +0000 Subject: [PATCH] Needed definition of _XOPEN_SOURCE_EXTENDED so DEC C on VMS will see the declarations of fd_set, select() and so on. --- apps/ocsp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/ocsp.c b/apps/ocsp.c index 8bf67aad31..c8676fc537 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -59,6 +59,10 @@ #include #include +#define _XOPEN_SOURCE_EXTENDED 1 /* Or fd_set, select() and so on won't be + declared properly on Compaq platforms + (at least with DEC C). + */ #include #include "apps.h" #include -- 2.25.1