From 7e701817234ff2be2a745fc63f32ccb5e874854c Mon Sep 17 00:00:00 2001 From: Bodo Möller Date: Fri, 21 May 1999 11:16:48 +0000 Subject: It was a very bad idea to use #include "../e_os.h" -- when this occurs in cryptlib.h (which is often included as "../cryptlib.h"), then the question remains relative to which directory this is to be interpreted. gcc went one further directory up, as intended; but makedepend thinks differently, and so probably do some C compilers. So the ../ must go away; thus e_os.h goes back into include/openssl (but I now use #include "openssl/e_os.h" instead of to make the point) -- and we have another huge bunch of dependency changes. Argh. --- crypto/cryptlib.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'crypto/cryptlib.h') diff --git a/crypto/cryptlib.h b/crypto/cryptlib.h index 1b62a5ae49..e3d38524ae 100644 --- a/crypto/cryptlib.h +++ b/crypto/cryptlib.h @@ -66,11 +66,7 @@ extern "C" { #endif -#ifndef FLAT_INC -# include "../e_os.h" -#else -# include "e_os.h" -#endif +#include "openssl/e_os.h" #include #include -- cgit v1.2.3