From f118514501c5fdd2c5b83130eba94df47c57c474 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 20 Mar 2003 23:29:26 +0000 Subject: [PATCH] Make sure we get the definition of OPENSSL_NO_RC5. --- crypto/evp/e_rc5.c | 5 +++-- crypto/rc5/rc5.h | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/crypto/evp/e_rc5.c b/crypto/evp/e_rc5.c index 3c7713b181..19a10c6402 100644 --- a/crypto/evp/e_rc5.c +++ b/crypto/evp/e_rc5.c @@ -56,10 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_RC5 - #include #include "cryptlib.h" + +#ifndef OPENSSL_NO_RC5 + #include #include #include "evp_locl.h" diff --git a/crypto/rc5/rc5.h b/crypto/rc5/rc5.h index 4adfd2db5a..4b3c153b50 100644 --- a/crypto/rc5/rc5.h +++ b/crypto/rc5/rc5.h @@ -59,6 +59,8 @@ #ifndef HEADER_RC5_H #define HEADER_RC5_H +#include /* OPENSSL_NO_RC5 */ + #ifdef __cplusplus extern "C" { #endif -- 2.34.1