aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Hainke <vincent@systemli.org>2023-11-10 09:01:56 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2023-11-19 14:58:44 +0100
commit545807ddff775110ad7f4f51b42f6f0735d820f1 (patch)
treee9f7d1a4979fb48982cea8abcbb2d96d92fa5d88
parent0c7c87a306b592a38006d303907ec8bc8ec519d5 (diff)
downloadupstream-545807ddff775110ad7f4f51b42f6f0735d820f1.tar.gz
upstream-545807ddff775110ad7f4f51b42f6f0735d820f1.tar.bz2
upstream-545807ddff775110ad7f4f51b42f6f0735d820f1.zip
wolfssl: update to 5.6.4
Releae Notes: https://github.com/wolfSSL/wolfssl/releases/tag/v5.6.4-stable Remove upstreamed patch: - 001-fix-detection-of-cut-tool-in-configure.ac.patch Signed-off-by: Nick Hainke <vincent@systemli.org> (cherry picked from commit d83231603c60a1df7d0530c8766f0b71c6553b44)
-rw-r--r--package/libs/wolfssl/Makefile6
-rw-r--r--package/libs/wolfssl/patches/001-fix-detection-of-cut-tool-in-configure.ac.patch25
2 files changed, 3 insertions, 28 deletions
diff --git a/package/libs/wolfssl/Makefile b/package/libs/wolfssl/Makefile
index 5ff944147d..0294c0ffd0 100644
--- a/package/libs/wolfssl/Makefile
+++ b/package/libs/wolfssl/Makefile
@@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=wolfssl
-PKG_VERSION:=5.6.3-stable
-PKG_RELEASE:=$(AUTORELEASE)
+PKG_VERSION:=5.6.4-stable
+PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/wolfSSL/wolfssl/archive/v$(PKG_VERSION)
-PKG_HASH:=2e74a397fa797c2902d7467d500de904907666afb4ff80f6464f6efd5afb114a
+PKG_HASH:=031691906794ff45e1e792561cf31759f5d29ac74936bc8dffb8b14f16d820b4
PKG_FIXUP:=libtool libtool-abiver
PKG_INSTALL:=1
diff --git a/package/libs/wolfssl/patches/001-fix-detection-of-cut-tool-in-configure.ac.patch b/package/libs/wolfssl/patches/001-fix-detection-of-cut-tool-in-configure.ac.patch
deleted file mode 100644
index 0d0c8b5423..0000000000
--- a/package/libs/wolfssl/patches/001-fix-detection-of-cut-tool-in-configure.ac.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 41d248461bd9ad44193a4806ecb5361513e8944e Mon Sep 17 00:00:00 2001
-From: jordan <jordan@wolfssl.com>
-Date: Tue, 27 Jun 2023 13:18:25 -0500
-Subject: [PATCH] fix detection of cut tool in configure.ac
-
----
- configure.ac | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -8723,10 +8723,11 @@ echo "extern \"C\" {" >> $OPTION_FILE
- echo "#endif" >> $OPTION_FILE
- echo "" >> $OPTION_FILE
-
--# check for supported command to trim option with
-+# Check for supported command to trim option with.
-+# note: cut requires an argument to exit with success.
- if colrm >/dev/null 2>&1 </dev/null; then
- TRIM="colrm 3"
--elif cut >/dev/null 2>&1 </dev/null; then
-+elif cut --version >/dev/null 2>&1 </dev/null; then
- TRIM="cut -c1-2"
- else
- AC_MSG_ERROR([Could not find colrm or cut to make options file])