From cd67cb14173b4329d4cb8c74ea88240e5e4bf2c3 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Tue, 29 May 2012 07:17:46 +0200 Subject: [PATCH] Use implicit from overlay instead explicit This was assuming an installed on the system, due to the build system not including -Iinclude/ anymore. Regression introduced in commit 901ed630fc64fca828e031bc8fa6780db9f05db1. --- src/Makefile.am | 2 +- src/hash/md5.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 61d7119..d0f07e0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -31,7 +31,7 @@ lib_LTLIBRARIES = libbsd.la hash/md5hl.c: $(srcdir)/hash/helper.c $(MKDIR_P) hash - $(AM_V_GEN) sed -e 's:hashinc:bsd/md5.h:g' -e 's:HASH:MD5:g' $< > $@ + $(AM_V_GEN) sed -e 's:hashinc:md5.h:g' -e 's:HASH:MD5:g' $< > $@ libbsd_la_DEPENDENCIES = \ libbsd.map diff --git a/src/hash/md5.c b/src/hash/md5.c index 697183b..e60bbd9 100644 --- a/src/hash/md5.c +++ b/src/hash/md5.c @@ -19,7 +19,7 @@ #include #include -#include +#include #define PUT_64BIT_LE(cp, value) do { \ (cp)[7] = (value) >> 56; \ -- 2.47.3