From 39c4b7092c2acb0051c57fb0f6c05490cf7274c4 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 20 Mar 2003 23:29:17 +0000 Subject: [PATCH] Make sure we get the definition of OPENSSL_NO_RC4. --- crypto/evp/e_rc4.c | 5 +++-- crypto/rc4/rc4.h | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/evp/e_rc4.c b/crypto/evp/e_rc4.c index d58f50783..eadd8d427 100644 --- a/crypto/evp/e_rc4.c +++ b/crypto/evp/e_rc4.c @@ -56,10 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_RC4 - #include #include "cryptlib.h" + +#ifndef OPENSSL_NO_RC4 + #include #include #include diff --git a/crypto/rc4/rc4.h b/crypto/rc4/rc4.h index 8722091f2..7aec04fe9 100644 --- a/crypto/rc4/rc4.h +++ b/crypto/rc4/rc4.h @@ -59,12 +59,11 @@ #ifndef HEADER_RC4_H #define HEADER_RC4_H +#include /* OPENSSL_NO_RC4, RC4_INT */ #ifdef OPENSSL_NO_RC4 #error RC4 is disabled. #endif -#include /* RC4_INT */ - #ifdef __cplusplus extern "C" { #endif