mirror of
https://github.com/openwrt/packages.git
synced 2025-12-24 10:38:21 +04:00
unbound: update to 1.14.0
Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
This commit is contained in:
committed by
Nick Hainke
parent
f2337fdd51
commit
824aa45133
14
net/unbound/patches/010-configure-uname.patch
Normal file
14
net/unbound/patches/010-configure-uname.patch
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
@@ -777,7 +777,7 @@ if test x_$ub_test_python != x_no; then
|
||||
fi
|
||||
fi
|
||||
|
||||
-if test "`uname`" = "NetBSD"; then
|
||||
+if test "${UNAME:-`uname`}" = "NetBSD"; then
|
||||
NETBSD_LINTFLAGS='"-D__RENAME(x)=" -D_NETINET_IN_H_'
|
||||
AC_SUBST(NETBSD_LINTFLAGS)
|
||||
fi
|
||||
Reference in New Issue
Block a user