aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/wolfssl/patches/101-AR-flags-configure-update.patch
diff options
context:
space:
mode:
authorEneas U de Queiroz <cotequeiroz@gmail.com>2019-07-01 13:40:00 -0300
committerChristian Lamparter <chunkeey@gmail.com>2019-07-07 13:02:05 +0200
commitff69364ad84a1dbf5b6fdf5188fb52ccae9fe5ea (patch)
treeb35116674a20e33da0611bc4bf1a16225b527196 /package/libs/wolfssl/patches/101-AR-flags-configure-update.patch
parent2792daab5ad26e916619052fc7f581cddc1ea53c (diff)
downloadupstream-ff69364ad84a1dbf5b6fdf5188fb52ccae9fe5ea.tar.gz
upstream-ff69364ad84a1dbf5b6fdf5188fb52ccae9fe5ea.tar.bz2
upstream-ff69364ad84a1dbf5b6fdf5188fb52ccae9fe5ea.zip
wolfssl: update to 4.0.0-stable
Removed options that can't be turned off because we're building with --enable-stunnel, some of which affect hostapd's Config.in. Adjusted the title of OCSP option, as OCSP itself can't be turned off, only the stapling part is selectable. Mark options turned on when wpad support is selected. Add building options for TLS 1.0, and TLS 1.3. Add hardware crypto support, which due to a bug, only works when CCM support is turned off. Reorganized option conditionals in Makefile. Add Eneas U de Queiroz as maintainer. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'package/libs/wolfssl/patches/101-AR-flags-configure-update.patch')
-rw-r--r--package/libs/wolfssl/patches/101-AR-flags-configure-update.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/package/libs/wolfssl/patches/101-AR-flags-configure-update.patch b/package/libs/wolfssl/patches/101-AR-flags-configure-update.patch
deleted file mode 100644
index 9401a54a5b..0000000000
--- a/package/libs/wolfssl/patches/101-AR-flags-configure-update.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 42eacece82b6375a9f4bab3903a1a39f7d1dd579 Mon Sep 17 00:00:00 2001
-From: John Safranek <john@wolfssl.com>
-Date: Tue, 5 Mar 2019 09:26:30 -0800
-Subject: [PATCH] AR flags configure update In at least one environment the
- check for particular AR options was failing due to a bash script bug. Deleted
- an extra pair of parenthesis triggering an arithmetic statement when
- redundant grouping was desired.
-
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -15,7 +15,7 @@ AC_CONFIG_AUX_DIR([build-aux])
- : ${CFLAGS=""}
-
- # Test ar for the "U" option. Should be checked before the libtool macros.
--xxx_ar_flags=$((ar --help) 2>&1)
-+xxx_ar_flags=$(ar --help 2>&1)
- AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}])
-
- AC_PROG_CC