From 3f0ca2f88afbd0819df2e4fecf603b72f757b3f4 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Mon, 24 Sep 2018 19:55:34 +0200 Subject: [PATCH] ndb_redis: updated include paths for pkg-config usage --- src/modules/ndb_redis/Makefile | 2 +- src/modules/ndb_redis/redis_client.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ndb_redis/Makefile b/src/modules/ndb_redis/Makefile index 939a5cc680a..e426088489c 100644 --- a/src/modules/ndb_redis/Makefile +++ b/src/modules/ndb_redis/Makefile @@ -13,7 +13,7 @@ HIREDIS_BUILDER = $(shell \ endif ifeq ($(HIREDIS_BUILDER),) - HIREDISDEFS=-I$(LOCALBASE)/include + HIREDISDEFS=-I$(LOCALBASE)/include -I$(LOCALBASE)/include/hiredis HIREDISLIBS=-L$(LOCALBASE)/lib -lhiredis else HIREDISDEFS = $(shell $(HIREDIS_BUILDER) --cflags) diff --git a/src/modules/ndb_redis/redis_client.h b/src/modules/ndb_redis/redis_client.h index c1d907042f0..c9e3d804248 100644 --- a/src/modules/ndb_redis/redis_client.h +++ b/src/modules/ndb_redis/redis_client.h @@ -28,7 +28,7 @@ #ifndef _REDIS_CLIENT_H_ #define _REDIS_CLIENT_H_ -#include +#include #include "../../core/str.h" #include "../../core/parser/parse_param.h"