From d5f9166bacfb3757dfd6117310ad54ab749b11f9 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 4 Feb 2022 15:13:01 +0100 Subject: Move e_os.h to include/internal Including e_os.h with a path from a header file doesn't work well on certain exotic platform. It simply fails to build. Since we don't seem to be able to stop ourselves, the better move is to move e_os.h to an include directory that's part of the inclusion path given to the compiler. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17641) --- test/evp_libctx_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/evp_libctx_test.c') diff --git a/test/evp_libctx_test.c b/test/evp_libctx_test.c index e2663dc029..ada3bf01c8 100644 --- a/test/evp_libctx_test.c +++ b/test/evp_libctx_test.c @@ -33,7 +33,7 @@ #include "testutil.h" #include "internal/nelem.h" #include "crypto/bn_dh.h" /* _bignum_ffdhe2048_p */ -#include "../e_os.h" /* strcasecmp */ +#include "internal/e_os.h" /* strcasecmp */ static OSSL_LIB_CTX *libctx = NULL; static OSSL_PROVIDER *nullprov = NULL; -- cgit v1.2.3