Skip to content
Snippets Groups Projects
Commit 19684258 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

<Deuce> Oh yeah, you need that in an ifneq ($(os),win32)

parent 301c88a7
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4410 passed
......@@ -89,11 +89,13 @@ ifeq ($(os),linux)
CON_LIBS += -lsystemd
endif
endif
ifeq ($(shell pkg-config libmosquitto --exists && echo "yes"),yes)
CFLAGS += -DUSE_MOSQUITTO
CFLAGS += $(shell pkg-config libmosquitto --cflags)
CON_LIBS += $(shell pkg-config libmosquitto --libs)
JS_LIBS += $(shell pkg-config libmosquitto --libs)
ifneq ($(os), win32)
ifeq ($(shell pkg-config libmosquitto --exists && echo "yes"),yes)
CFLAGS += -DUSE_MOSQUITTO
CFLAGS += $(shell pkg-config libmosquitto --cflags)
CON_LIBS += $(shell pkg-config libmosquitto --libs)
JS_LIBS += $(shell pkg-config libmosquitto --libs)
endif
endif
include sbbsdefs.mk
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment