From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1437033-garchives=archives.gentoo.org@lists.gentoo.org> 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 8B4B8158094 for <garchives@archives.gentoo.org>; Sat, 17 Sep 2022 17:49:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8091E0909; Sat, 17 Sep 2022 17:49:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B1BC5E0909 for <gentoo-commits@lists.gentoo.org>; Sat, 17 Sep 2022 17:49:52 +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 E39DB340FD2 for <gentoo-commits@lists.gentoo.org>; Sat, 17 Sep 2022 17:49:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BFFF5D4 for <gentoo-commits@lists.gentoo.org>; Sat, 17 Sep 2022 17:49:50 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1663436977.6795cc4ecfff4ff5c94a6f6a39e68df0d51e12b6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpng/libpng-1.6.38.ebuild X-VCS-Directories: media-libs/libpng/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6795cc4ecfff4ff5c94a6f6a39e68df0d51e12b6 X-VCS-Branch: master Date: Sat, 17 Sep 2022 17:49:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d70511fe-0718-4df3-9ef1-a413c1b47712 X-Archives-Hash: fb8f683c35fd734a933a21a8a31ce553 commit: 6795cc4ecfff4ff5c94a6f6a39e68df0d51e12b6 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 17 17:48:15 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 17 17:49:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6795cc4e media-libs/libpng: fix NEON on ARM64 As of 1.6.38, =check is banned on arm64 because NEON is always present there. We don't need =check otherwise, so just enable conditionally based on whether cpu_flags_arm_neon is on. (configure also says =check is deprecated/unsupported.) Note that while cpu_flags_arm_neon is masked on arm64 in general, it's unmasked for packages which we know work, like libpng (as it's been fine before 1.6.38). Closes: https://bugs.gentoo.org/870298 Thanks-to: Roy Bamford <neddyseagoon <AT> gentoo.org> Signed-off-by: Sam James <sam <AT> gentoo.org> media-libs/libpng/libpng-1.6.38.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libpng/libpng-1.6.38.ebuild b/media-libs/libpng/libpng-1.6.38.ebuild index 26f8a8b0427d..e2ba9967246d 100644 --- a/media-libs/libpng/libpng-1.6.38.ebuild +++ b/media-libs/libpng/libpng-1.6.38.ebuild @@ -35,7 +35,7 @@ src_prepare() { multilib_src_configure() { local myeconfargs=( - $(use_enable cpu_flags_arm_neon arm-neon check) + $(use_enable cpu_flags_arm_neon arm-neon) $(use_enable cpu_flags_x86_sse intel-sse) $(use_enable static-libs static) )