aboutsummaryrefslogtreecommitdiff
path: root/net/unbound/patches
diff options
context:
space:
mode:
authorEric Luehrsen <ericluehrsen@gmail.com>2021-12-10 02:01:49 -0500
committerNick Hainke <vincent@systemli.org>2021-12-10 10:50:14 +0100
commit824aa451331e569b5252ec85a053a150521b48af (patch)
tree370417d8428e1d43197031e56e0859ff737e8c85 /net/unbound/patches
parentf2337fdd5165b71e9f72e8e14e07faecc98e73ad (diff)
unbound: update to 1.14.0
Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
Diffstat (limited to 'net/unbound/patches')
-rw-r--r--net/unbound/patches/010-configure-uname.patch (renamed from net/unbound/patches/010-configure_uname.patch)5
-rw-r--r--net/unbound/patches/200-Squelch-permission-denied-errors-for-udp.patch44
2 files changed, 4 insertions, 45 deletions
diff --git a/net/unbound/patches/010-configure_uname.patch b/net/unbound/patches/010-configure-uname.patch
index e20ef1ed4..1a3f67e97 100644
--- a/net/unbound/patches/010-configure_uname.patch
+++ b/net/unbound/patches/010-configure-uname.patch
@@ -1,6 +1,9 @@
+OpenWrt (modification):
+Fix cross compile errors by inserting an environment variable for the
+target. Use "uname" on host only if "UNAME" variable is empty.
--- a/configure.ac
+++ b/configure.ac
-@@ -772,7 +772,7 @@ if test x_$ub_test_python != x_no; then
+@@ -777,7 +777,7 @@ if test x_$ub_test_python != x_no; then
fi
fi
diff --git a/net/unbound/patches/200-Squelch-permission-denied-errors-for-udp.patch b/net/unbound/patches/200-Squelch-permission-denied-errors-for-udp.patch
deleted file mode 100644
index b68f478d6..000000000
--- a/net/unbound/patches/200-Squelch-permission-denied-errors-for-udp.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From ad45e9b89ee18bbfeff0ed45da2c243ac17acfe6 Mon Sep 17 00:00:00 2001
-From: "W.C.A. Wijngaards" <wouter@nlnetlabs.nl>
-Date: Fri, 13 Aug 2021 09:27:58 +0200
-Subject: [PATCH] - Fix for #431: Squelch permission denied errors for udp
- connect, and udp send, they are visible at higher verbosity settings.
-
----
- doc/Changelog | 2 ++
- services/outside_network.c | 1 +
- util/netevent.c | 1 +
- 3 files changed, 4 insertions(+)
-
-# diff --git a/doc/Changelog b/doc/Changelog
-# index 62c747c85..1cd0f3bad 100644
-# --- a/doc/Changelog
-# +++ b/doc/Changelog
-# @@ -1,5 +1,7 @@
-# 13 August 2021: Wouter
-# - Support using system-wide crypto policies.
-# + - Fix for #431: Squelch permission denied errors for udp connect,
-# + and udp send, they are visible at higher verbosity settings.
-
-# 12 August 2021: George
-# - Merge PR #514, from ziollek: Docker environment for run tests.
---- a/services/outside_network.c
-+++ b/services/outside_network.c
-@@ -1962,6 +1962,7 @@ static int udp_connect_needs_log(int err
- case ENETDOWN:
- # endif
- case EPERM:
-+ case EACCES:
- if(verbosity >= VERB_ALGO)
- return 1;
- return 0;
---- a/util/netevent.c
-+++ b/util/netevent.c
-@@ -300,6 +300,7 @@ udp_send_errno_needs_log(struct sockaddr
- case ENETDOWN:
- # endif
- case EPERM:
-+ case EACCES:
- if(verbosity < VERB_ALGO)
- return 0;
- default: