From: Richard Levitte Date: Thu, 20 Mar 2003 23:29:17 +0000 (+0000) Subject: Make sure we get the definition of OPENSSL_NO_RC4. X-Git-Tag: BEN_FIPS_TEST_1~38^2~213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39c4b7092c2acb0051c57fb0f6c05490cf7274c4;p=thirdparty%2Fopenssl.git Make sure we get the definition of OPENSSL_NO_RC4. --- diff --git a/crypto/evp/e_rc4.c b/crypto/evp/e_rc4.c index d58f507837b..eadd8d42741 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 8722091f2ec..7aec04fe93a 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