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