summaryrefslogtreecommitdiffstats
path: root/crypto/cast/cast_lcl.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-20 21:59:20 +0000
committerBodo Möller <bodo@openssl.org>1999-05-20 21:59:20 +0000
commit17e3dd1c62e9aadcd908c55e650f70379d2d19e2 (patch)
tree2b3191cc15e24d09853b7e1b708fd93a398b40e8 /crypto/cast/cast_lcl.h
parent9dff4cc05100b9989998e4fe061e58d0fbfd6d8e (diff)
Don't install e_os.h in include/openssl, use it only as a local
include file.
Diffstat (limited to 'crypto/cast/cast_lcl.h')
-rw-r--r--crypto/cast/cast_lcl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/crypto/cast/cast_lcl.h b/crypto/cast/cast_lcl.h
index 2694bc4441..9f3a6602c9 100644
--- a/crypto/cast/cast_lcl.h
+++ b/crypto/cast/cast_lcl.h
@@ -60,7 +60,12 @@
#include <stdlib.h>
#endif
-#include <openssl/e_os.h> /* OPENSSL_EXTERN */
+/* we need OPENSSL_EXTERN from e_os.h */
+#ifndef FLAT_INC
+# include "../e_os.h"
+#else
+# include "e_os.h"
+#endif
#undef c2l
#define c2l(c,l) (l =((unsigned long)(*((c)++))) , \