X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fevp%2Fm_md5.c;h=9fc953012740774ba3dc02697661828b23b8158c;hb=153a59f46d24803f90d355be6689697e08266fd3;hp=d65db9aa1dd054b9b59c40638c707d612ed6e45d;hpb=7dfb0b774e6592dcbfe47015168a0ac8b44e2a17;p=oweals%2Fopenssl.git diff --git a/crypto/evp/m_md5.c b/crypto/evp/m_md5.c index d65db9aa1d..9fc9530127 100644 --- a/crypto/evp/m_md5.c +++ b/crypto/evp/m_md5.c @@ -56,11 +56,12 @@ * [including the GNU Public Licence.] */ +#ifndef NO_MD5 #include #include "cryptlib.h" -#include "evp.h" -#include "objects.h" -#include "x509.h" +#include +#include +#include static EVP_MD md5_md= { @@ -75,7 +76,8 @@ static EVP_MD md5_md= sizeof(EVP_MD *)+sizeof(MD5_CTX), }; -EVP_MD *EVP_md5() +EVP_MD *EVP_md5(void) { return(&md5_md); } +#endif