From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sat, 12 Jul 2025 17:48:39 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uacSt-00Gll3-05 for lore@lore.pengutronix.de; Sat, 12 Jul 2025 17:48:39 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1uacSs-0001Fi-NB; Sat, 12 Jul 2025 17:48:38 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1uacSV-0001Bg-T3; Sat, 12 Jul 2025 17:48:15 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uacSV-0086X9-26; Sat, 12 Jul 2025 17:48:15 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1uacSV-00FQ99-1w; Sat, 12 Jul 2025 17:48:15 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Sat, 12 Jul 2025 17:48:15 +0200 Message-Id: <20250712154815.3675420-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250706080146.4071125-1-christian.melki@t2data.com> References: <20250706080146.4071125-1-christian.melki@t2data.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] libpng: Version bump. 1.6.48 -> 1.6.50 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Christian Melki Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 5864fcaa672f50b3322d8aeaac3eea98f745cdc3. Michael [sent from post-receive hook] On Sat, 12 Jul 2025 17:48:15 +0200, Christian Melki wrote: > https://sourceforge.net/p/libpng/code/ci/libpng16/tree/CHANGES > > * Add RISC-V vector option. > > * Re-add lost ARM NEON optimization. I removed this, misunderstanding > the work done. > > * Disable automatic hardware optimization as it does not seem to get > ARM soft-float cases right. This relies on manual per arch selection. > > Signed-off-by: Christian Melki > Message-Id: <20250706080146.4071125-1-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/libpng.make b/rules/libpng.make > index 07c6ea99b53c..a842038a41d7 100644 > --- a/rules/libpng.make > +++ b/rules/libpng.make > @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBPNG) += libpng > # > # Paths and names > # > -LIBPNG_VERSION := 1.6.48 > -LIBPNG_MD5 := 6ddbe2107e3811d51da698794b8fb4a2 > +LIBPNG_VERSION := 1.6.50 > +LIBPNG_MD5 := e583e61455c4f40d565d85c0e9a2fbf9 > LIBPNG := libpng-$(LIBPNG_VERSION) > LIBPNG_SUFFIX := tar.xz > LIBPNG_URL := $(call ptx/mirror, SF, libpng/$(LIBPNG).$(LIBPNG_SUFFIX)) > @@ -41,11 +41,14 @@ LIBPNG_CONF_OPT := \ > --enable-unversioned-links \ > --enable-unversioned-libpng-pc \ > --enable-unversioned-libpng-config \ > + --disable-hardware-optimizations \ > + --$(call ptx/endis, PTXCONF_ARCH_ARM_NEON)-arm-neon \ > --disable-mips-msa \ > --disable-mips-mmi \ > --$(call ptx/endis, PTXCONF_ARCH_X86)-intel-sse \ > --disable-powerpc-vsx \ > --disable-loongarch-lsx \ > + --$(call ptx/endis, PTXCONF_ARCH_RISCV)-riscv-rvv \ > --with-binconfigs > > # ----------------------------------------------------------------------------