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,12 +89,14 @@ ifeq ($(os),linux) ...@@ -89,12 +89,14 @@ ifeq ($(os),linux)
CON_LIBS += -lsystemd CON_LIBS += -lsystemd
endif endif
endif endif
ifneq ($(os), win32)
ifeq ($(shell pkg-config libmosquitto --exists && echo "yes"),yes) ifeq ($(shell pkg-config libmosquitto --exists && echo "yes"),yes)
CFLAGS += -DUSE_MOSQUITTO CFLAGS += -DUSE_MOSQUITTO
CFLAGS += $(shell pkg-config libmosquitto --cflags) CFLAGS += $(shell pkg-config libmosquitto --cflags)
CON_LIBS += $(shell pkg-config libmosquitto --libs) CON_LIBS += $(shell pkg-config libmosquitto --libs)
JS_LIBS += $(shell pkg-config libmosquitto --libs) JS_LIBS += $(shell pkg-config libmosquitto --libs)
endif endif
endif
include sbbsdefs.mk include sbbsdefs.mk
MT_CFLAGS += $(SBBSDEFS) MT_CFLAGS += $(SBBSDEFS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment