This includes UCI support for a new config option, bridge_tls_version.
Add bridge tls vesion support
Updates mosquitto, the MQTT broker, and client libraries to version
1.2.2, from version 1.2.0. Changes are bugfixes, most relevant to
OpenWrt being that the -nossl package variant actually builds again,
and greatly improved SSL performance.
This includes the full changes for 1.2.3:
http://mosquitto.org/2013/12/version-1-2-3-released/
This includes the full changes for 1.2.2:
http://mosquitto.org/2013/10/version-1-2-2-released/
This includes the full changes for 1.2.1:
http://mosquitto.org/2013/09/version-1-2-1-released/
Signed-off-by: Karl Palsson <karlp@remake.is>
SVN-Revision: 39495
include $(TOPDIR)/rules.mk
PKG_NAME:=mosquitto
-PKG_VERSION:=1.2
+PKG_VERSION:=1.2.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://mosquitto.org/files/source/
-PKG_MD5SUM:=424bfd84a7c923ccc2ea36c8bee558b2
+PKG_MD5SUM:=0874beeff51b3c64d4a7b2d5f9498288
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
if [ $? -eq 0 ]; then
echo "bridge_psk $BRIDGEPSK" >> $TCONF
fi
+ BRIDGETLSVERSION=$(uci -q get mosquitto.@bridge[-$i].tls_version)
+ if [ $? -eq 0 ]; then
+ echo "bridge_tls_version $BRIDGETLSVERSION" >> $TCONF
+ fi
done
fi