From 04368973239948b1f995fff7d5189ccad90c08b1 Mon Sep 17 00:00:00 2001 From: Glen Huang Date: Tue, 18 Apr 2023 21:11:37 +0800 Subject: [PATCH] strongswan: add missing PKG_MOD_AVAILABLE Without these charon will warn with messages like: plugin 'kdf': failed to load - kdf_plugin_create not found and no plugin file available plugin 'drbg': failed to load - drbg_plugin_create not found and no plugin file available Signed-off-by: Glen Huang --- net/strongswan/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/strongswan/Makefile b/net/strongswan/Makefile index 51ff506fa..b05b42501 100644 --- a/net/strongswan/Makefile +++ b/net/strongswan/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=strongswan PKG_VERSION:=5.9.10 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://download.strongswan.org/ https://download2.strongswan.org/ @@ -39,6 +39,7 @@ PKG_MOD_AVAILABLE:= \ des \ dhcp \ dnskey \ + drbg \ duplicheck \ eap-identity \ eap-md5 \ @@ -54,6 +55,7 @@ PKG_MOD_AVAILABLE:= \ gmpdh \ ha \ hmac \ + kdf \ kernel-libipsec \ kernel-netlink \ ldap \