From 4bf14292f72bbc9c810c6b423c7db19ea0e6e90a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bl=C3=A4se?= Date: Thu, 24 Mar 2022 18:13:26 +0100 Subject: [PATCH] fff-mqtt: Switch from mosquitto-ssl to mosquitto-nossl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit *-ssl variants of mosquitto require libopenssl, which increases the storage requirement by almost 1 MB, even when compressed with squashfs. Because we currently do not need TLS support for fff-mqtt, switch to the nossl variant to save space and allow building for devices with 8 MiB flash. Signed-off-by: Fabian Bläse Reviewed-by: Christian Dresel --- src/packages/fff/fff-mqtt/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/packages/fff/fff-mqtt/Makefile b/src/packages/fff/fff-mqtt/Makefile index 0125575f..790fbb95 100644 --- a/src/packages/fff/fff-mqtt/Makefile +++ b/src/packages/fff/fff-mqtt/Makefile @@ -14,8 +14,8 @@ define Package/fff-mqtt URL:=https://www.freifunk-franken.de DEPENDS:= \ +fff-config \ - +libmosquitto-ssl \ - +mosquitto-client-ssl + +libmosquitto-nossl \ + +mosquitto-client-nossl endef define Package/fff-mqtt/description