diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:24:32 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:24:32 +0100 |
commit | 83054771574f69e31a2d084de7fcbb221fbd057b (patch) | |
tree | 0d33bfb042cfe97ad3c58502840360abc7b2eb60 /crypto | |
parent | Make sure we get the definition of OPENSSL_NO_HMAC. (diff) | |
download | openssl-83054771574f69e31a2d084de7fcbb221fbd057b.tar.xz openssl-83054771574f69e31a2d084de7fcbb221fbd057b.zip |
Make sure we get the definition of OPENSSL_NO_IDEA and IDEA_INT.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/idea/idea.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/idea/idea.h b/crypto/idea/idea.h index 67132414ee..5782e54b0f 100644 --- a/crypto/idea/idea.h +++ b/crypto/idea/idea.h @@ -59,6 +59,8 @@ #ifndef HEADER_IDEA_H #define HEADER_IDEA_H +#include <openssl/opensslconf.h> /* IDEA_INT, OPENSSL_NO_IDEA */ + #ifdef OPENSSL_NO_IDEA #error IDEA is disabled. #endif @@ -66,7 +68,6 @@ #define IDEA_ENCRYPT 1 #define IDEA_DECRYPT 0 -#include <openssl/opensslconf.h> /* IDEA_INT */ #define IDEA_BLOCK 8 #define IDEA_KEY_LENGTH 16 |