From b25b88e732daf787959e61abb9cee60f3ca23227 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 28 Mar 2010 05:50:29 +0000 Subject: Add HAVE_CONFIG_H support to let files receive configure defines. --- cpukit/libmd/md4.c | 4 ++++ cpukit/libmd/md5.c | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'cpukit/libmd') diff --git a/cpukit/libmd/md4.c b/cpukit/libmd/md4.c index 3474f50783..1568f2dc8c 100644 --- a/cpukit/libmd/md4.c +++ b/cpukit/libmd/md4.c @@ -27,6 +27,10 @@ ** -- You can print out the digest using MDprint(&MD) */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + /* Implementation notes: ** This implementation assumes that ints are 32-bit quantities. */ diff --git a/cpukit/libmd/md5.c b/cpukit/libmd/md5.c index 4e81f9cebd..b4c20f3c72 100644 --- a/cpukit/libmd/md5.c +++ b/cpukit/libmd/md5.c @@ -33,6 +33,10 @@ *********************************************************************** */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include /* memcpy */ #include "md5.h" -- cgit v1.2.3