From cbe09b5a0c49a39c32539f391a583c2fca2f72ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Mare=C5=A1?= Date: Sat, 16 Aug 2025 18:06:53 +0200 Subject: [PATCH] bsb-logger: Fix compilation --- bsb/logger/Makefile | 4 ++-- bsb/logger/burrow-bsb-logger.c | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bsb/logger/Makefile b/bsb/logger/Makefile index 26311cf..c9f5def 100644 --- a/bsb/logger/Makefile +++ b/bsb/logger/Makefile @@ -2,8 +2,8 @@ PC=pkg-config UCW_CFLAGS := $(shell $(PC) --cflags libucw) UCW_LIBS := $(shell $(PC) --libs libucw) -CFLAGS=$(UCW_CFLAGS) $(CURL_CFLAGS) -std=gnu99 -LDFLAGS=$(UCW_LIBS) $(CURL_LIBS) -lmosquitto +CFLAGS=$(UCW_CFLAGS) -std=gnu99 +LDLIBS=$(UCW_LIBS) -lmosquitto all: burrow-bsb-logger diff --git a/bsb/logger/burrow-bsb-logger.c b/bsb/logger/burrow-bsb-logger.c index f3489ef..7399e29 100644 --- a/bsb/logger/burrow-bsb-logger.c +++ b/bsb/logger/burrow-bsb-logger.c @@ -18,7 +18,6 @@ #include #include -#include #include #define LOG_DIR "/var/log/bsb" -- 2.47.3