This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 071ce73040 gnu: goocanvas: Fix build with gcc@14.
071ce73040 is described below

commit 071ce730403c4918a2456b6fba7351ced451c26b
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sun Jul 20 23:52:16 2025 +0100

    gnu: goocanvas: Fix build with gcc@14.
    
    * gnu/packages/gtk.scm (goocanvas) [arguments] <configure-flags>: Ignore
    warning on "incompatible-pointer-types".
    
    Change-Id: Iaf73e7bc701a68367528e9d7afc057f193153d4f
---
 gnu/packages/gtk.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 27b850ac8e..a6b1a8af0a 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -2896,7 +2896,8 @@ popovers.")
      (list cairo glib gtk+ python-pygobject))
     (arguments
      `(#:configure-flags '("--disable-rebuilds"
-                           "--disable-static")
+                           "--disable-static"
+                           "CFLAGS=-Wno-error=incompatible-pointer-types")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'fix-install-path

Reply via email to