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

commit 5ae25639a575b710b7592c82edd96424b7e6a9cc
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Tue Dec 31 23:08:10 2024 +0100

    gnu: libquicktime: Fix build with gcc-14.
    
    * gnu/packages/video.scm (libquicktime)[arguments]: New field to relax
    gcc-14's strictness.
    
    Change-Id: I13491dad5b018f93865fabbaddae94850cedcecb
---
 gnu/packages/video.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index cd29e0882b..9f0ff4cfe7 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -543,6 +543,10 @@ as a joint effort between the BBC and Fluendo.")
        (patches
         (search-patches "libquicktime-ffmpeg.patch"))))
     (build-system gnu-build-system)
+    (arguments
+     (list
+      #:configure-flags
+      #~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")))
     (native-inputs
      (list gettext-minimal doxygen pkg-config))
     (inputs

Reply via email to