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/conf/Makefile.ssl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crypto/conf') diff --git a/crypto/conf/Makefile.ssl b/crypto/conf/Makefile.ssl index 6d93f32a6e..c686b345a5 100644 --- a/crypto/conf/Makefile.ssl +++ b/crypto/conf/Makefile.ssl @@ -81,8 +81,9 @@ clean: conf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h +conf.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h conf.o: ../../include/openssl/err.h ../../include/openssl/lhash.h conf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h -conf.o: ../../include/openssl/stack.h ../cryptlib.h ../e_os.h conf_lcl.h +conf.o: ../../include/openssl/stack.h ../cryptlib.h conf_lcl.h conf_err.o: ../../include/openssl/conf.h ../../include/openssl/err.h conf_err.o: ../../include/openssl/lhash.h ../../include/openssl/stack.h -- cgit v1.2.3