From b83f6f9af3408e25066bf4d5ffd2183e1d926447 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Mon, 12 Jul 2021 16:14:31 +0200 Subject: [PATCH] syslog-ng: disable mqtt For now, disable mqtt as it was automatically enabled as the build system finds compiled libpaho-mqtt-c and requires dependency. --- Here is the output: Package syslog-ng is missing dependencies for the following libraries: libpaho-mqtt3c.so.1 --- This is a new feature since syslog-ng 3.33.1 and if anyone is interested in it, it can be enabled. Signed-off-by: Josef Schlehofer (cherry picked from commit e319e89fde0f3c6b3c8ecfffe9bd759c9a44ac15) --- admin/syslog-ng/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/syslog-ng/Makefile b/admin/syslog-ng/Makefile index bc31eecaf..036a7d83c 100644 --- a/admin/syslog-ng/Makefile +++ b/admin/syslog-ng/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=syslog-ng PKG_VERSION:=3.33.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Josef Schlehofer PKG_LICENSE:=LGPL-2.1-or-later GPL-2.0-or-later @@ -58,6 +58,7 @@ CONFIGURE_ARGS += \ --enable-json=yes \ --enable-http=yes \ --disable-smtp \ + --disable-mqtt \ --disable-redis \ --disable-dependency-tracking \ --disable-python \