From: Richard Levitte Date: Tue, 9 Jun 2015 23:51:23 +0000 (+0200) Subject: Make sure test/gost2814789test.c can see configuration macros X-Git-Tag: OpenSSL_1_1_0-pre1~1014 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e36c5fc4f547ce62280e5a704d1f94189742ec65;p=openssl Make sure test/gost2814789test.c can see configuration macros test/gost2814789test.c needs to include openssl/e_os2.h or it wouldn't see the defined OPENSSL_NO_* macros. Reviewed-by: Tim Hudson --- diff --git a/test/gost2814789test.c b/test/gost2814789test.c index 4569249e9a..b2cd41fadc 100644 --- a/test/gost2814789test.c +++ b/test/gost2814789test.c @@ -8,6 +8,7 @@ * ==================================================================== */ #include +#include #if defined(OPENSSL_NO_ENGINE) || defined(OPENSSL_NO_GOST) int main(int argc, char *argv[])