From 69dc0a06bfd34516c5c18a6e22985ef01a472339 Mon Sep 17 00:00:00 2001 From: VivekSainiEQ Date: Mon, 1 Mar 2021 21:31:33 +0000 Subject: [PATCH] Fixed bug where make USE_SYSTEMD=yes would not pass in correct flags, issue #226 --- src/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile b/src/Makefile index 9e4070d4a..75f273490 100644 --- a/src/Makefile +++ b/src/Makefile @@ -227,6 +227,7 @@ endif ifeq ($(BUILD_WITH_SYSTEMD),yes) FINAL_LIBS+=$(shell $(PKG_CONFIG) --libs libsystemd) FINAL_CFLAGS+= -DHAVE_LIBSYSTEMD + FINAL_CXXFLAGS+= -DHAVE_LIBSYSTEMD endif ifeq ($(MALLOC),tcmalloc)