From: Kurt Roeckx Date: Tue, 30 Dec 2014 16:14:49 +0000 (+0100) Subject: Add missing include of sys/time.h X-Git-Tag: master-post-reformat~110 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=97d5809c2b70fdd240990b940c564bcbd77a19c6;p=oweals%2Fopenssl.git Add missing include of sys/time.h gettimeofday was undefined Reviewed-by: Geoff Thorpe --- diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c index 88ee559d98..d45dd954af 100644 --- a/crypto/bio/bss_dgram.c +++ b/crypto/bio/bss_dgram.c @@ -66,6 +66,9 @@ #include #ifndef OPENSSL_NO_DGRAM +#if !(defined(_WIN32) || defined(OPENSSL_SYS_VMS)) +# include +#endif #if defined(OPENSSL_SYS_VMS) #include #endif