diff options
author | Richard Levitte <levitte@openssl.org> | 2015-06-10 01:51:23 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-06-10 02:03:03 +0200 |
commit | e36c5fc4f547ce62280e5a704d1f94189742ec65 (patch) | |
tree | d5afbfde936118ed9c8de0dfa5cfe2e007c1441e /test | |
parent | acaff3b797f50a0a0e17a0be45b7fafad962004e (diff) | |
download | openssl-new-e36c5fc4f547ce62280e5a704d1f94189742ec65.tar.gz |
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 <tjh@openssl.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/gost2814789test.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <stdio.h> +#include <openssl/e_os2.h> #if defined(OPENSSL_NO_ENGINE) || defined(OPENSSL_NO_GOST) int main(int argc, char *argv[]) |