You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
675 B
24 lines
675 B
Index: Makefile |
|
--- Makefile.orig 2018-02-08 23:55:28.000000000 +0100 |
|
+++ Makefile 2018-02-09 00:15:05.307223000 +0100 |
|
@@ -130,7 +130,7 @@ |
|
CFLAGS += -I$(MOSQUITTO_SRC)/src/ |
|
CFLAGS += -I$(MOSQUITTO_SRC)/lib/ |
|
ifneq ($(OS),Windows_NT) |
|
- CFLAGS += -fPIC -Wall -Werror |
|
+ CFLAGS += -fPIC |
|
endif |
|
CFLAGS += $(BACKENDS) $(BE_CFLAGS) -I$(MOSQ)/src -DDEBUG=1 $(OSSLINC) |
|
|
|
Index: be-redis.c |
|
--- be-redis.c.orig 2018-02-08 23:55:28.000000000 +0100 |
|
+++ be-redis.c 2018-02-09 00:15:23.711886000 +0100 |
|
@@ -35,7 +35,7 @@ |
|
#include "log.h" |
|
#include "hash.h" |
|
#include "backends.h" |
|
-#include <hiredis/hiredis.h> |
|
+#include "redis/hiredis.h" |
|
|
|
struct redis_backend { |
|
redisContext *redis;
|
|
|