From 1b814c5c9c0896bcd845c4cb637629052e27f29f Mon Sep 17 00:00:00 2001 From: Steven Seungcheol Lee Date: Fri, 26 Nov 2021 13:54:24 +0900 Subject: [PATCH] Makefile: Add missing define (LIBJSONC_14) Signed-off-by: Steven Seungcheol Lee --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 17a6a935..44b2eead 100644 --- a/Makefile +++ b/Makefile @@ -59,6 +59,10 @@ ifeq ($(HAVE_SYSTEMD),0) override CFLAGS += -DHAVE_SYSTEMD endif +ifeq ($(LIBJSONC_14), 0) + override CFLAGS += -DLIBJSONC_14 +endif + ifeq ($(LIBJSONC), 0) override LDFLAGS += $(shell pkg-config --libs json-c) override CFLAGS += $(shell pkg-config --cflags json-c) -- 2.50.1