mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Christian Melki <christian.melki@t2data.com>
Subject: Re: [ptxdist] [APPLIED] cairo: Version bump. 1.18.2 -> 1.18.4
Date: Mon, 24 Mar 2025 08:45:40 +0100	[thread overview]
Message-ID: <20250324074540.2431561-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20250310183450.4038881-1-christian.melki@t2data.com>

Thanks, applied as adaaa742625e5c6d64614104b7cba0321cd39de4.

Michael

[sent from post-receive hook]

On Mon, 24 Mar 2025 08:45:40 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Minor changes.
> https://gitlab.freedesktop.org/cairo/cairo/-/releases/1.18.4
> 
> * Forward patches.
> 
> * Make exposed LZO togglable and bind it to scripting (afaict).
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20250310183450.4038881-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/cairo-1.18.2/0001-cairo-ft-fx-building-without-SVG-support.patch b/patches/cairo-1.18.4/0001-cairo-ft-fx-building-without-SVG-support.patch
> similarity index 100%
> rename from patches/cairo-1.18.2/0001-cairo-ft-fx-building-without-SVG-support.patch
> rename to patches/cairo-1.18.4/0001-cairo-ft-fx-building-without-SVG-support.patch
> diff --git a/patches/cairo-1.18.2/0100-Cairo-Fix-Denial-of-Service-Attack-due-to-Logical-Pr.patch b/patches/cairo-1.18.4/0100-Cairo-Fix-Denial-of-Service-Attack-due-to-Logical-Pr.patch
> similarity index 100%
> rename from patches/cairo-1.18.2/0100-Cairo-Fix-Denial-of-Service-Attack-due-to-Logical-Pr.patch
> rename to patches/cairo-1.18.4/0100-Cairo-Fix-Denial-of-Service-Attack-due-to-Logical-Pr.patch
> diff --git a/patches/cairo-1.18.2/0101-There-is-an-assertion-in-function-_cairo_arc_in_dire.patch b/patches/cairo-1.18.4/0101-There-is-an-assertion-in-function-_cairo_arc_in_dire.patch
> similarity index 100%
> rename from patches/cairo-1.18.2/0101-There-is-an-assertion-in-function-_cairo_arc_in_dire.patch
> rename to patches/cairo-1.18.4/0101-There-is-an-assertion-in-function-_cairo_arc_in_dire.patch
> diff --git a/patches/cairo-1.18.2/series b/patches/cairo-1.18.4/series
> similarity index 100%
> rename from patches/cairo-1.18.2/series
> rename to patches/cairo-1.18.4/series
> diff --git a/rules/cairo.in b/rules/cairo.in
> index a2c678a43aec..7490f6d5bec0 100644
> --- a/rules/cairo.in
> +++ b/rules/cairo.in
> @@ -6,6 +6,7 @@ menuconfig CAIRO
>  	select GCCLIBS_GCC_S
>  	select XORG_LIB_XEXT	if CAIRO_XLIB
>  	select XORG_LIB_XRENDER	if CAIRO_XLIB
> +	select LIBLZO		if CAIRO_LZO
>  	select ZLIB		if CAIRO_ZLIB
>  	select GLIB		if CAIRO_GOBJECT
>  	select FREETYPE		if CAIRO_FREETYPE
> @@ -26,6 +27,9 @@ if CAIRO
>  config CAIRO_GOBJECT
>  	bool
>  
> +config CAIRO_LZO
> +	bool
> +
>  config CAIRO_ZLIB
>  	bool
>  
> @@ -66,6 +70,7 @@ config CAIRO_PNG
>  
>  config CAIRO_SCRIPT
>  	bool
> +	select CAIRO_LZO
>  	select CAIRO_ZLIB
>  	prompt "script surface"
>  
> diff --git a/rules/cairo.make b/rules/cairo.make
> index 3bbd5770bb86..c147998fe252 100644
> --- a/rules/cairo.make
> +++ b/rules/cairo.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_CAIRO) += cairo
>  #
>  # Paths and names
>  #
> -CAIRO_VERSION	:= 1.18.2
> -CAIRO_MD5	:= 5ad67c707edd0003f1b91c8bbc0005c1
> +CAIRO_VERSION	:= 1.18.4
> +CAIRO_MD5	:= db575fb41bbda127e0147e401f36f8ac
>  CAIRO		:= cairo-$(CAIRO_VERSION)
>  CAIRO_SUFFIX	:= tar.xz
>  CAIRO_URL	:= http://cairographics.org/releases/cairo-$(CAIRO_VERSION).$(CAIRO_SUFFIX)
> @@ -45,6 +45,7 @@ CAIRO_CONF_OPT	:= \
>  	-Dglib=$(call ptx/endis, PTXCONF_CAIRO_GOBJECT)d \
>  	-Dgtk2-utils=disabled \
>  	-Dgtk_doc=false \
> +	-Dlzo=$(call ptx/endis, PTXCONF_CAIRO_LZO)d \
>  	-Dpng=$(call ptx/endis, PTXCONF_CAIRO_PNG)d \
>  	-Dquartz=disabled \
>  	-Dspectre=disabled \



      reply	other threads:[~2025-03-24  7:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-10 18:34 [ptxdist] [PATCH] " Christian Melki
2025-03-24  7:45 ` Michael Olbrich [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250324074540.2431561-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=christian.melki@t2data.com \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox