guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 24f0118bc0a04091173b1acad78cb0c5d65e0c7b
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sat Jan 4 16:32:15 2025 +0100
gnu: vorbis-tools: Fix build with gcc-14.
* gnu/packages/xiph.scm (vorbis-tools)[arguments]: New field to relax
gcc-14's
strictness.
Change-Id: Ie72a0d1c09826d7d35e3d214af41fd0ad8455aa9
Modified-by: Zheng Junjie <[email protected]>
---
gnu/packages/xiph.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 7ca336b14a..4c7121daa3 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2021 Matthew James Kraai <[email protected]>
;;; Copyright © 2021 Vinicius Monego <[email protected]>
;;; Copyright © 2024 Zheng Junjie <[email protected]>
+;;; Copyright © 2024, 2025 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -336,6 +337,11 @@ Kate stream.")
(base32
"1c7h4ivgfdyygz2hyh6nfibxlkz8kdk868a576qkkjgj5gn78xyv"))))
(build-system gnu-build-system)
+ (arguments
+ (list
+ #:configure-flags
+ ;; Relax gcc-14's strictness.
+ #~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")))
(inputs (list ao
curl
flac