diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:31:24 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:31:24 +0100 |
commit | bff8e1dddbfaf4eb1f4f8a4e7c56c7cb0c645231 (patch) | |
tree | c6e58e20930cf74871b8537942678255ad432a35 /crypto | |
parent | Make sure we get the definition of OPENSSL_NO_MD2. (diff) | |
download | openssl-bff8e1dddbfaf4eb1f4f8a4e7c56c7cb0c645231.tar.xz openssl-bff8e1dddbfaf4eb1f4f8a4e7c56c7cb0c645231.zip |
Make sure we get the definition of OPENSSL_NO_MD4.
Diffstat (limited to '')
-rw-r--r-- | crypto/evp/m_md4.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/evp/m_md4.c b/crypto/evp/m_md4.c index e19b663754..a3f6be4f3b 100644 --- a/crypto/evp/m_md4.c +++ b/crypto/evp/m_md4.c @@ -56,9 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_MD4 #include <stdio.h> #include "cryptlib.h" + +#ifndef OPENSSL_NO_MD4 + #include <openssl/evp.h> #include <openssl/objects.h> #include <openssl/x509.h> |