From 69104cdf34462d4973e6bdddaf0ffb9cba041fb8 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 20 Mar 2003 23:32:16 +0000 Subject: [PATCH] Make sure we get the definition of OPENSSL_NO_SHA. --- crypto/evp/m_dss1.c | 4 +++- crypto/evp/m_sha.c | 4 +++- crypto/evp/m_sha1.c | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/crypto/evp/m_dss1.c b/crypto/evp/m_dss1.c index f5668ebda0..9a0ebe0a50 100644 --- a/crypto/evp/m_dss1.c +++ b/crypto/evp/m_dss1.c @@ -56,9 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_SHA #include #include "cryptlib.h" + +#ifndef OPENSSL_NO_SHA + #include #include #include diff --git a/crypto/evp/m_sha.c b/crypto/evp/m_sha.c index 10697c7ed3..a3343bb2eb 100644 --- a/crypto/evp/m_sha.c +++ b/crypto/evp/m_sha.c @@ -56,9 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_SHA #include #include "cryptlib.h" + +#ifndef OPENSSL_NO_SHA + #include #include #include diff --git a/crypto/evp/m_sha1.c b/crypto/evp/m_sha1.c index d6be3502f0..838225bf84 100644 --- a/crypto/evp/m_sha1.c +++ b/crypto/evp/m_sha1.c @@ -56,9 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_SHA #include #include "cryptlib.h" + +#ifndef OPENSSL_NO_SHA + #include #include #include -- 2.25.1