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) --- crypto/store/store_lib.c | 2 +- crypto/store/store_result.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/store') diff --git a/crypto/store/store_lib.c b/crypto/store/store_lib.c index 4efa7eea03..81e0f70a19 100644 --- a/crypto/store/store_lib.c +++ b/crypto/store/store_lib.c @@ -14,7 +14,7 @@ /* We need to use some STORE deprecated APIs */ #define OPENSSL_SUPPRESS_DEPRECATED -#include "e_os.h" +#include "internal/e_os.h" #include #include diff --git a/crypto/store/store_result.c b/crypto/store/store_result.c index de00f4f562..567b9c99cd 100644 --- a/crypto/store/store_result.c +++ b/crypto/store/store_result.c @@ -7,7 +7,7 @@ * https://www.openssl.org/source/license.html */ -#include "e_os.h" +#include "internal/e_os.h" #include #include -- cgit v1.2.3