Fix for building when uthash not available.

pull/2386/head
Roger A. Light 4 years ago
parent 7a86b1078a
commit 55d5d2e5f2

@ -13,6 +13,9 @@ endif
endif
LOCAL_CPPFLAGS:=-I../mosquitto_passwd -I../../plugins/dynamic-security -DWITH_CJSON
ifeq ($(WITH_BUNDLED_DEPS),yes)
LOCAL_CPPFLAGS+=-I../../deps
endif
OBJS= mosquitto_ctrl.o \
broker.o \

@ -360,6 +360,7 @@ endif
ifeq ($(WITH_BUNDLED_DEPS),yes)
BROKER_CPPFLAGS:=$(BROKER_CPPFLAGS) -I../deps
LIB_CPPFLAGS:=$(LIB_CPPFLAGS) -I../deps
CLIENT_CPPFLAGS:=$(CLIENT_CPPFLAGS) -I../deps
PLUGIN_CPPFLAGS:=$(PLUGIN_CPPFLAGS) -I../../deps
endif

@ -4,6 +4,9 @@ include ../../config.mk
PLUGIN_NAME=mosquitto_dynamic_security
LOCAL_CPPFLAGS=-I../../lib/ -I../../src/ -DWITH_CJSON -DWITH_TLS
ifeq ($(WITH_BUNDLED_DEPS),yes)
LOCAL_CPPFLAGS:=$(LOCAL_CPPFLAGS) -I../deps
endif
OBJS= \
acl.o \

@ -3,7 +3,10 @@ include ../../../config.mk
.PHONY : all binary check clean reallyclean test install uninstall
PLUGIN_NAME=mosquitto_delayed_auth
PLUGIN_CFLAGS+=-I../../../include -I../../../
PLUGIN_CPPFLAGS+=-I../../../include -I../../../
ifeq ($(WITH_BUNDLED_DEPS),yes)
PLUGIN_CPPFLAGS+=-I../../../deps
endif
all : binary

Loading…
Cancel
Save