mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
Fixes: Possible Domain Hijacking via promiscuous NS Records (CVE-2025-11411)
Changelog: https://www.nlnetlabs.nl/projects/unbound/download/#unbound-1-24-2
Upstream commit f6269baa605d31859f28770e01a24e3677e5f82c
f6269baa60
Signed-off-by: Goetz Goerisch <ggoerisch@gmail.com>
15 lines
438 B
Diff
15 lines
438 B
Diff
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
|
|
@@ -904,7 +904,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
|