diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-21 11:16:48 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-21 11:16:48 +0000 |
commit | 7e701817234ff2be2a745fc63f32ccb5e874854c (patch) | |
tree | 9fabfb74c7cfdd98d897ce0f0f43efe42996b9d9 /rsaref | |
parent | d76c85a301f0ab5ff74b54f841cf5db70916dbba (diff) | |
download | openssl-new-7e701817234ff2be2a745fc63f32ccb5e874854c.tar.gz |
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 'rsaref')
-rw-r--r-- | rsaref/Makefile.ssl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rsaref/Makefile.ssl b/rsaref/Makefile.ssl index a1c0aef3f9..4d19f841ec 100644 --- a/rsaref/Makefile.ssl +++ b/rsaref/Makefile.ssl @@ -83,9 +83,9 @@ rsar_err.o: ../include/openssl/bn.h ../include/openssl/crypto.h rsar_err.o: ../include/openssl/err.h ../include/openssl/opensslconf.h rsar_err.o: ../include/openssl/opensslv.h ../include/openssl/rsa.h rsar_err.o: ../include/openssl/rsaref.h ../include/openssl/stack.h -rsaref.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/bio.h -rsaref.o: ../include/openssl/bn.h ../include/openssl/buffer.h -rsaref.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h +rsaref.o: ../crypto/cryptlib.h ../include/openssl/bio.h ../include/openssl/bn.h +rsaref.o: ../include/openssl/buffer.h ../include/openssl/crypto.h +rsaref.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h rsaref.o: ../include/openssl/err.h ../include/openssl/opensslconf.h rsaref.o: ../include/openssl/opensslv.h ../include/openssl/rand.h rsaref.o: ../include/openssl/rsa.h ../include/openssl/rsaref.h |