From: Roy Marples Date: Mon, 14 Jul 2014 13:58:24 +0000 (+0000) Subject: Fix import X-Git-Tag: v6.4.2^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=06a8d816e80c6fd395937fc196b6c51aaf0a23b8;p=thirdparty%2Fdhcpcd.git Fix import --- diff --git a/Makefile b/Makefile index 2eb46b2b..bd4b9550 100644 --- a/Makefile +++ b/Makefile @@ -164,7 +164,8 @@ import: ${SRCS} /tmp/${DISTPREFIX}/crypt; \ cp $$(cd crypt && ${CC} ${CPPFLAGS} -MM ${CRYPT_SRCS} | \ sed -e 's/^.*c //g' -e 's/.*\.c$$//g' -e 's/\\//g' | \ - tr ' ' '\n' | sed -e 's:^:crypt/:g' | \ + tr ' ' '\n' | sed -e '/config.h/d' \ + -e 's:^:crypt/:g' | \ sort -u) /tmp/${DISTPREFIX}/crypt; \ fi; if test -n "${COMPAT_SRCS}"; then \ diff --git a/crypt/hmac_md5.c b/crypt/hmac_md5.c index 6b780671..0de0ae1a 100644 --- a/crypt/hmac_md5.c +++ b/crypt/hmac_md5.c @@ -30,6 +30,7 @@ #include "crypt.h" +#include "../config.h" #ifdef HAVE_MD5_H #include #else