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