diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2022-03-22 12:46:15 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-03-24 09:45:25 -0700 |
commit | 67a9629e6f44fb12ae92d5ba38b06cf049529d3f (patch) | |
tree | a0ba758a4fa392a793ac7b3eef6bad986a3bf03e /meta-networking/recipes-connectivity/dhcp/files/0002-bind-Makefile.in-disable-backtrace.patch | |
parent | 6ebe45deb4e467feb8ff85da2b9d04ccc4dd4a30 (diff) | |
download | meta-openembedded-67a9629e6f44fb12ae92d5ba38b06cf049529d3f.tar.gz |
dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
License-Update: The ISC DHCP is licensed under the Mozilla Public
License, MPL 2.0 rather than ISC License now[1][2].
[1] https://www.isc.org/licenses/
[2] https://downloads.isc.org/isc/dhcp/4.4.3/dhcp-4.4.3-RELNOTES
The bundled BIND has been updated to 9.11.36. We don't need to download
it from external anymore.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/dhcp/files/0002-bind-Makefile.in-disable-backtrace.patch')
-rw-r--r-- | meta-networking/recipes-connectivity/dhcp/files/0002-bind-Makefile.in-disable-backtrace.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/dhcp/files/0002-bind-Makefile.in-disable-backtrace.patch b/meta-networking/recipes-connectivity/dhcp/files/0002-bind-Makefile.in-disable-backtrace.patch new file mode 100644 index 0000000000..631a640ecc --- /dev/null +++ b/meta-networking/recipes-connectivity/dhcp/files/0002-bind-Makefile.in-disable-backtrace.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From 6c6bbfe6b33e5c7e46a4260d656593dbe610fd8a Mon Sep 17 00:00:00 2001 | ||
2 | From: Yi Zhao <yi.zhao@windriver.com> | ||
3 | Date: Tue, 8 Jun 2021 10:13:57 +0800 | ||
4 | Subject: [PATCH] bind/Makefile.in: disable backtrace | ||
5 | |||
6 | Fixes build error for qemuarm on musl: | ||
7 | libisc.so: undefined reference to `_Unwind_GetIP' | ||
8 | |||
9 | Upstream-Status: Inappropriate [embedded specific] | ||
10 | |||
11 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
12 | --- | ||
13 | bind/Makefile.in | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/bind/Makefile.in b/bind/Makefile.in | ||
17 | index 2e60091..533d55c 100644 | ||
18 | --- a/bind/Makefile.in | ||
19 | +++ b/bind/Makefile.in | ||
20 | @@ -22,7 +22,7 @@ prefix = @prefix@ | ||
21 | exec_prefix = @exec_prefix@ | ||
22 | |||
23 | bindconfig = --without-openssl --without-libxml2 --without-libjson \ | ||
24 | - --without-gssapi --disable-threads --without-lmdb \ | ||
25 | + --without-gssapi --disable-threads --without-lmdb --disable-backtrace \ | ||
26 | --includedir=@includedir@ --libdir=@libdir@ --without-python\ | ||
27 | @BINDLT@ @BINDIOMUX@ @BINDCONFIG@ --enable-full-report | ||
28 | |||
29 | -- | ||
30 | 2.25.1 | ||
31 | |||