From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B0441581D3 for ; Wed, 22 May 2024 01:07:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86ECEE2A3D; Wed, 22 May 2024 01:07:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30721E2A3D for ; Wed, 22 May 2024 01:07:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45B7133FEF1 for ; Wed, 22 May 2024 01:06:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7127B1B05 for ; Wed, 22 May 2024 01:06:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1716339977.cb8bcce7d9f965a0c09f5849a1d12aef12510c89.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/dhcpcd/dhcpcd-10.0.6-r3.ebuild net-misc/dhcpcd/dhcpcd-9999.ebuild X-VCS-Directories: net-misc/dhcpcd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cb8bcce7d9f965a0c09f5849a1d12aef12510c89 X-VCS-Branch: master Date: Wed, 22 May 2024 01:06:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 82a8fde4-216d-4d48-9ebd-e75af416d8b3 X-Archives-Hash: 73644150f97147489f49c37a32dd08b4 commit: cb8bcce7d9f965a0c09f5849a1d12aef12510c89 Author: Eli Schwartz gmail com> AuthorDate: Tue May 21 22:22:04 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 22 01:06:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb8bcce7 net-misc/dhcpcd: add whitelist for false positive configure implicit decls arc4random is actually added to glibc now. The checks work there, and still fail on musl, which they were always supposed to -- the checks are run with -Werror, and even without that, the linker dies with undefined references here. So this is "safe", albeit kinda gross when autoconf exists. Closes: https://bugs.gentoo.org/924825 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-misc/dhcpcd/dhcpcd-10.0.6-r3.ebuild | 4 ++++ net-misc/dhcpcd/dhcpcd-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/net-misc/dhcpcd/dhcpcd-10.0.6-r3.ebuild b/net-misc/dhcpcd/dhcpcd-10.0.6-r3.ebuild index 3fcb61425cc4..492b2eca8327 100644 --- a/net-misc/dhcpcd/dhcpcd-10.0.6-r3.ebuild +++ b/net-misc/dhcpcd/dhcpcd-10.0.6-r3.ebuild @@ -46,6 +46,10 @@ QA_CONFIG_IMPL_DECL_SKIP=( consttime_memequal SHA256_Init hmac + # These may exist on some glibc versions, but the checks fail due to + # -Werror / undefined reference no matter what. bug #924825 + arc4random + arc4random_uniform ) PATCHES=( diff --git a/net-misc/dhcpcd/dhcpcd-9999.ebuild b/net-misc/dhcpcd/dhcpcd-9999.ebuild index 1c3bbc87d456..56307d8d8f09 100644 --- a/net-misc/dhcpcd/dhcpcd-9999.ebuild +++ b/net-misc/dhcpcd/dhcpcd-9999.ebuild @@ -46,6 +46,10 @@ QA_CONFIG_IMPL_DECL_SKIP=( consttime_memequal SHA256_Init hmac + # These may exist on some glibc versions, but the checks fail due to + # -Werror / undefined reference no matter what. bug #924825 + arc4random + arc4random_uniform ) PATCHES=(