Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id F0D671A921F for ; Wed, 23 Mar 2022 22:43:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 424F484FED; Wed, 23 Mar 2022 22:43:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 775C884FEC for ; Wed, 23 Mar 2022 22:43:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 8iMCqvJbpAEq for ; Wed, 23 Mar 2022 22:43:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F033384EC8 for ; Wed, 23 Mar 2022 22:43:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E9DE3FB24; Wed, 23 Mar 2022 22:43:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1648075423242180" MIME-Version: 1.0 Date: Wed, 23 Mar 2022 22:43:43 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/graphics/babl To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220323224343.E9DE3FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1648075423242180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Wed Mar 23 22:43:43 UTC 2022 Modified Files: pkgsrc/graphics/babl: distinfo Added Files: pkgsrc/graphics/babl/patches: patch-babl_babl-cpuaccel.c Log Message: babl: only use Linux-specific neon instruction set detection on Linux To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/graphics/babl/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/graphics/babl/patches/patch-babl_babl-cpuaccel.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1648075423242180 Content-Disposition: inline Content-Length: 1644 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/babl/distinfo diff -u pkgsrc/graphics/babl/distinfo:1.34 pkgsrc/graphics/babl/distinfo:1.35 --- pkgsrc/graphics/babl/distinfo:1.34 Sat Feb 26 07:46:32 2022 +++ pkgsrc/graphics/babl/distinfo Wed Mar 23 22:43:43 2022 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.34 2022/02/26 07:46:32 wiz Exp $ +$NetBSD: distinfo,v 1.35 2022/03/23 22:43:43 tnn Exp $ BLAKE2s (babl-0.1.90.tar.xz) = 73f2d51d2d720a799f8b70b6ce1e3b812d97c7f3034b6415e8770dac7647f115 SHA512 (babl-0.1.90.tar.xz) = c0eac3c7d5eb328de2f97ccc9743bc2f78d79c23dc4d3465e979d98827b1643a0f2a257f0445e4acd09f15a9f95c79f67d09cb18c2c94b4f3d290944a0341e3c Size (babl-0.1.90.tar.xz) = 309324 bytes +SHA1 (patch-babl_babl-cpuaccel.c) = e06c723627b5449e2311b6d1a8a68def9ddf7033 SHA1 (patch-babl_meson.build) = ff2ab73080b97cf442e7581932d22a612f4e3093 SHA1 (patch-extensions_gggl.c) = 4981d58c145a84a8b4f579127221e6289f13c036 Added files: Index: pkgsrc/graphics/babl/patches/patch-babl_babl-cpuaccel.c diff -u /dev/null pkgsrc/graphics/babl/patches/patch-babl_babl-cpuaccel.c:1.1 --- /dev/null Wed Mar 23 22:43:43 2022 +++ pkgsrc/graphics/babl/patches/patch-babl_babl-cpuaccel.c Wed Mar 23 22:43:43 2022 @@ -0,0 +1,15 @@ +$NetBSD: patch-babl_babl-cpuaccel.c,v 1.1 2022/03/23 22:43:43 tnn Exp $ + +only use Linux-specific neon instruction set detection on Linux + +--- babl/babl-cpuaccel.c.orig 2022-02-21 21:30:17.000000000 +0000 ++++ babl/babl-cpuaccel.c +@@ -550,7 +550,7 @@ arch_accel (void) + + #endif /* ARCH_PPC && USE_ALTIVEC */ + +-#if defined(ARCH_ARM) ++#if defined(ARCH_ARM) && defined(__linux__) + + #include + #include --_----------=_1648075423242180--