From 10a51f6a197f8b6b8e146ca16bb458288943cc08 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Mon, 4 May 2020 23:17:43 -0700 Subject: [PATCH] net-dns/bind: build fix for LDFLAGS=-Wl,-O1 The cmocka component introduced as a unit test framework in BIND 9.16 series does not link correctly if LDFLAGS include -Wl,-O1. It can be triggered directly, or via any pkg-config dependencies that includes that in LDFLAGS. This does not fix other QA errors already present, just disables building cmocka as the testing is already disabled in the ebuild. Closes: https://bugs.gentoo.org/710840 Signed-off-by: Robin H. Johnson --- net-dns/bind/bind-9.16.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net-dns/bind/bind-9.16.1.ebuild b/net-dns/bind/bind-9.16.1.ebuild index 9628c36243ac..12ea094a482a 100644 --- a/net-dns/bind/bind-9.16.1.ebuild +++ b/net-dns/bind/bind-9.16.1.ebuild @@ -82,6 +82,7 @@ RDEPEND="${DEPEND} S="${WORKDIR}/${MY_P}" # bug 479092, requires networking +# bug 710840, cmocka fails LDFLAGS='-Wl,-O1' RESTRICT="test" pkg_setup() { @@ -138,6 +139,7 @@ src_configure() { --enable-full-report --without-readline --with-openssl="${EPREFIX}"/usr + --without-cmocka $(use_enable caps linux-caps) $(use_enable dnsrps) $(use_enable dnstap) -- 2.26.2