This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b43e141b87 gnu: libgpod: Fix build with gcc-14.
b43e141b87 is described below
commit b43e141b870be5e094dc999401c2878f88ed5586
Author: NoƩ Lopez <[email protected]>
AuthorDate: Mon Jul 28 19:45:05 2025 +0200
gnu: libgpod: Fix build with gcc-14.
* gnu/packages/music.scm (libgpod)[arguments]<#:configure-flags>:
Turn errors back into warnings.
Change-Id: I485d82346a32f2a071f1269e6f1860b5c8d509e7
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/music.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 0ecbf28bdc..1706b0d649 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -460,8 +460,10 @@ score, keyboard, guitar, drum and controller views.")
"--without-hal"
"--enable-udev"
(string-append "--with-udev-dir=" #$output "/lib/udev")
- (string-append "--prefix=" #$output))
-
+ (string-append "--prefix=" #$output)
+ (string-append "CFLAGS="
+ "-Wno-error=incompatible-pointer-types "
+ "-Wno-error=implicit-int"))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-autotools-version-requirement