mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] libpng: Version bump. 1.6.40 -> 1.6.41
@ 2024-01-26 18:55 Christian Melki
  2024-01-29  7:41 ` Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2024-01-26 18:55 UTC (permalink / raw)
  To: ptxdist

A couple of changes to the build options
and build mechanisms.
https://sourceforge.net/p/libpng/code/ci/libpng16/tree/CHANGES

* Disable tests and tools. Not used by the ruleset.

* Pin down some new options.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/libpng.make | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/rules/libpng.make b/rules/libpng.make
index 5e931fb7d..59b232424 100644
--- a/rules/libpng.make
+++ b/rules/libpng.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBPNG) += libpng
 #
 # Paths and names
 #
-LIBPNG_VERSION	:= 1.6.40
-LIBPNG_MD5	:= 6c7fe9dbb80c89c3579bedad9722e559
+LIBPNG_VERSION	:= 1.6.41
+LIBPNG_MD5	:= 0206c4c8de50793cf6cd0616ec9a17e6
 LIBPNG		:= libpng-$(LIBPNG_VERSION)
 LIBPNG_SUFFIX	:= tar.xz
 LIBPNG_URL	:= $(call ptx/mirror, SF, libpng/$(LIBPNG).$(LIBPNG_SUFFIX))
@@ -34,13 +34,17 @@ LIBPNG_WRAPPER_BLACKLIST := TARGET_DEBUG_FULL
 LIBPNG_CONF_TOOL:= autoconf
 LIBPNG_CONF_OPT := \
 	$(CROSS_AUTOCONF_USR) \
+	--disable-tests \
+	--disable-tools \
 	--enable-unversioned-links \
 	--enable-unversioned-libpng-pc \
 	--enable-unversioned-libpng-config \
 	--$(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 \
 	--with-binconfigs
 
 # ----------------------------------------------------------------------------
-- 
2.34.1




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [PATCH] libpng: Version bump. 1.6.40 -> 1.6.41
  2024-01-26 18:55 [ptxdist] [PATCH] libpng: Version bump. 1.6.40 -> 1.6.41 Christian Melki
@ 2024-01-29  7:41 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2024-01-29  7:41 UTC (permalink / raw)
  To: Christian Melki; +Cc: ptxdist

On Fri, Jan 26, 2024 at 07:55:26PM +0100, Christian Melki wrote:
> A couple of changes to the build options
> and build mechanisms.
> https://sourceforge.net/p/libpng/code/ci/libpng16/tree/CHANGES
> 
> * Disable tests and tools. Not used by the ruleset.
> 
> * Pin down some new options.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>

Fails to apply.

Michael

> ---
>  rules/libpng.make | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/rules/libpng.make b/rules/libpng.make
> index 5e931fb7d..59b232424 100644
> --- a/rules/libpng.make
> +++ b/rules/libpng.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBPNG) += libpng
>  #
>  # Paths and names
>  #
> -LIBPNG_VERSION	:= 1.6.40
> -LIBPNG_MD5	:= 6c7fe9dbb80c89c3579bedad9722e559
> +LIBPNG_VERSION	:= 1.6.41
> +LIBPNG_MD5	:= 0206c4c8de50793cf6cd0616ec9a17e6
>  LIBPNG		:= libpng-$(LIBPNG_VERSION)
>  LIBPNG_SUFFIX	:= tar.xz
>  LIBPNG_URL	:= $(call ptx/mirror, SF, libpng/$(LIBPNG).$(LIBPNG_SUFFIX))
> @@ -34,13 +34,17 @@ LIBPNG_WRAPPER_BLACKLIST := TARGET_DEBUG_FULL
>  LIBPNG_CONF_TOOL:= autoconf
>  LIBPNG_CONF_OPT := \
>  	$(CROSS_AUTOCONF_USR) \
> +	--disable-tests \
> +	--disable-tools \
>  	--enable-unversioned-links \
>  	--enable-unversioned-libpng-pc \
>  	--enable-unversioned-libpng-config \
>  	--$(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 \
>  	--with-binconfigs
>  
>  # ----------------------------------------------------------------------------
> -- 
> 2.34.1
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-01-29  7:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-26 18:55 [ptxdist] [PATCH] libpng: Version bump. 1.6.40 -> 1.6.41 Christian Melki
2024-01-29  7:41 ` Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox