Commit 6117fa45 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

strongswan: bump to version 5.3.0



Enable connmark and forecast plugins when iptables is selected.
And always enable the led plugin, though it's not new to 5.3.0.

[Thomas: also update hash file.]

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 50f30864
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
# From http://download.strongswan.org/strongswan-5.2.2.tar.bz2.md5
md5	7ee1a33060b2bde35be0f6d78a1d26d0	strongswan-5.2.2.tar.bz2
# From http://download.strongswan.org/strongswan-5.3.0.tar.bz2.md5
md5	c52d4228231c2025d9c320d0e9990327	strongswan-5.3.0.tar.bz2
+13 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
################################################################################

STRONGSWAN_VERSION = 5.2.2
STRONGSWAN_VERSION = 5.3.0
STRONGSWAN_SOURCE = strongswan-$(STRONGSWAN_VERSION).tar.bz2
STRONGSWAN_SITE = http://download.strongswan.org
STRONGSWAN_LICENSE = GPLv2+
@@ -12,6 +12,7 @@ STRONGSWAN_LICENSE_FILES = COPYING LICENSE
STRONGSWAN_DEPENDENCIES = host-pkgconf
STRONGSWAN_CONF_OPTS += \
	--without-lib-prefix \
	--enable-led \
	--enable-pkcs11=yes \
	--enable-kernel-netlink=$(if $(BR2_INET_IPV6),yes,no) \
	--enable-socket-default=$(if $(BR2_INET_IPV6),yes,no) \
@@ -70,4 +71,15 @@ STRONGSWAN_DEPENDENCIES += \
	$(if $(BR2_PACKAGE_MYSQL),mysql)
endif

ifeq ($(BR2_PACKAGE_IPTABLES),y)
STRONGSWAN_DEPENDENCIES += iptables
STRONGSWAN_CONF_OPTS += \
	--enable-connmark \
	--enable-forecast
else
STRONGSWAN_COF_OPTS += \
	--disable-connmark \
	--disable-forecast
endif

$(eval $(autotools-package))