diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-31 21:21:24 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:17 +0200 |
commit | d5ff8b31fb4c63c8eb9cb02dce399d2cb3ea3ead (patch) | |
tree | 856fbbe2077507601824d9ba4230e1b9000718c3 | |
parent | deac0139223a1ffb9fa1381178d4d0da8261b95e (diff) |
gnu: libmpeg3: Fix build with gcc-14.
* gnu/packages/video.scm (libmpeg3)[arguments]: Add CC to #:make-flags to
relax gcc-14's strictness.
Change-Id: I05efa8f3d0c67bc818913f964673a4074e371b53
-rw-r--r-- | gnu/packages/video.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index f02947a884..a84d8ac94f 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -737,6 +737,7 @@ touchscreen devices and the ability to apply filters to their input events.") `(#:test-target "test" #:make-flags (list + "CC=gcc -g -O2 -Wno-error=implicit-function-declaration" (string-append "A52DIR=" (assoc-ref %build-inputs "liba52")) (string-append "DST=" (assoc-ref %outputs "out") "/bin")) #:phases |