From 7e701817234ff2be2a745fc63f32ccb5e874854c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= 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/md2/Makefile.ssl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crypto/md2') diff --git a/crypto/md2/Makefile.ssl b/crypto/md2/Makefile.ssl index 5bc00cf3cc..67ce450788 100644 --- a/crypto/md2/Makefile.ssl +++ b/crypto/md2/Makefile.ssl @@ -81,7 +81,8 @@ clean: md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h md2_dgst.o: ../../include/openssl/opensslv.h md2_one.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h -md2_one.o: ../../include/openssl/crypto.h ../../include/openssl/err.h +md2_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h +md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h md2_one.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h md2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h -md2_one.o: ../cryptlib.h ../e_os.h +md2_one.o: ../cryptlib.h -- cgit v1.2.3