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 082d152cbe gnu: murrine: Fix build with GCC 14.
082d152cbe is described below

commit 082d152cbe4eecb6c482cb90ab20be13b13fb36d
Author: Jussi Timperi <[email protected]>
AuthorDate: Tue Jul 22 16:53:00 2025 +0300

    gnu: murrine: Fix build with GCC 14.
    
    * gnu/packages/gtk.scm (murrine)[arguments]<#:configure-flags>: Add
    CFLAGS with '-Wno-error=implicit-function-declaration'.
    
    Change-Id: I48906f707decd9bd7d904ca6a85994b88390307d
---
 gnu/packages/gtk.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index dcda5aa775..0f6fd810a0 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -2512,7 +2512,9 @@ Redmond95 and ThinIce.")
     (arguments
      `(#:configure-flags
        `("--enable-animation"
-         "--enable-animationrtl")))
+         "--enable-animationrtl"
+         ;; Relax GCC 14's checks.
+         "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")))
     (native-inputs
      (list pkg-config intltool))
     (propagated-inputs

Reply via email to