summaryrefslogtreecommitdiffstats
path: root/crypto/txt_db
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-21 11:16:48 +0000
committerBodo Möller <bodo@openssl.org>1999-05-21 11:16:48 +0000
commit7e701817234ff2be2a745fc63f32ccb5e874854c (patch)
tree9fabfb74c7cfdd98d897ce0f0f43efe42996b9d9 /crypto/txt_db
parentd76c85a301f0ab5ff74b54f841cf5db70916dbba (diff)
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 <openssl/e_os.h> to make the point) -- and we have another huge bunch of dependency changes. Argh.
Diffstat (limited to 'crypto/txt_db')
-rw-r--r--crypto/txt_db/Makefile.ssl5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/txt_db/Makefile.ssl b/crypto/txt_db/Makefile.ssl
index e0ea6d92b3..552ea5580f 100644
--- a/crypto/txt_db/Makefile.ssl
+++ b/crypto/txt_db/Makefile.ssl
@@ -79,7 +79,8 @@ clean:
# DO NOT DELETE THIS LINE -- make depend depends on it.
txt_db.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
-txt_db.o: ../../include/openssl/crypto.h ../../include/openssl/err.h
+txt_db.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
+txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
-txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h ../e_os.h
+txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h