From e563de7f55036ec4a036161157f172beea15010a Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Thu, 7 Aug 2014 21:41:21 +0200 Subject: [PATCH 16/24] json: include json.h accordingly to json-c CFLAGS We use $(pkg-config --cflags json-c) but we include . The proper way to include the json-c header is to include . That absolute include causes errors while compiling with json-c-0.12 where the base include directory was changed to "json-c". https://github.com/json-c/json-c/blob/master/ChangeLog Signed-off-by: Jakub Filak --- src/plugins/bodhi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c index f605451..fcdbd83 100644 --- a/src/plugins/bodhi.c +++ b/src/plugins/bodhi.c @@ -17,7 +17,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include +#include #include #include #include -- 2.1.0