janneke pushed a commit to branch core-packages-team
in repository guix.

commit 12a0885caa9d8d568b63c4edfc9cc6fe8e2ec423
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Tue Dec 31 13:36:03 2024 +0100

    gnu: libvisual: Fix build with gcc-14.
    
    * gnu/packages/gstreamer.scm (libvisual)[arguments]: Add #:configure-flags 
to
    relax gcc-14's strictness.
    
    Change-Id: I84cb625c98e4ef75a87ad9ffe7fa580685c0fcf0
---
 gnu/packages/gstreamer.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 8459d50f62..dc7ec2558a 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2020 Michael Rohleder <m...@rohleder.de>
 ;;; Copyright © 2023, 2024 Maxim Cournoyer <maxim.courno...@gmail.com>
 ;;; Copyright © 2024 Remco van 't Veer <re...@remworks.net>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <jann...@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -238,7 +239,9 @@ and very fast.")
         (base32 "12xf0qzn9w090kakrj59makjbjg9vhga5mgchmx6c1ypw10fjfbc"))))
     (build-system gnu-build-system)
     (arguments
-     (list #:phases
+     (list #:configure-flags
+           #~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")
+           #:phases
            #~(modify-phases %standard-phases
                ;; The package is in a sub-dir of this repo.
                (add-after 'unpack 'chdir

Reply via email to