diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-31 23:08:10 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:18 +0200 |
| commit | d026d11512d5c667f81ca0c42aa40ea4272cec6a (patch) | |
| tree | b6da2a503e145f39de528fd42d803709ddaefb7c | |
| parent | b756465f3c95e7239e93b1c82a7c88dfc032b4fe (diff) | |
gnu: libquicktime: Fix build with gcc-14.
* gnu/packages/video.scm (libquicktime)[arguments]: Add CFLAGS to #:configure-flags
to relax gcc-14's strictness.
Change-Id: I13491dad5b018f93865fabbaddae94850cedcecb
| -rw-r--r-- | gnu/packages/video.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index bfdf41053c3..cfa3df15b57 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -548,9 +548,12 @@ as a joint effort between the BBC and Fluendo.") (search-patches "libquicktime-ffmpeg.patch")))) (build-system gnu-build-system) (arguments - ;; Avoid legacy dependencies such as GTK+ 2 and FFmpeg 4. - (list #:configure-flags #~(list "--without-ffmpeg" - "--without-gtk"))) + (list #:configure-flags + #~(list + "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration" + ;; Avoid legacy dependencies such as GTK+ 2 and FFmpeg 4. + "--without-ffmpeg" + "--without-gtk"))) (native-inputs (list gettext-minimal doxygen pkg-config)) (inputs |
