This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch core-packages-team
in repository guix.
The following commit(s) were added to refs/heads/core-packages-team by this
push:
new 21345298ed gnu: pidgin: Fix build with gcc-14.
21345298ed is described below
commit 21345298edef4aebdb317c6079763ba90b98e68f
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Jan 5 12:38:49 2025 +0100
gnu: pidgin: Fix build with gcc-14.
* gnu/packages/messaging.scm (pidgin)[arguments]: Extend CFLAGS to relax
gcc-14's strictness.
Change-Id: Ic36a32d02d3051ea7639c2d47933b0293b72fb89
---
gnu/packages/messaging.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index cb74f5f0b1..8595e1a770 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -46,6 +46,7 @@
;;; Copyright © 2024 Ashish SHUKLA <[email protected]>
;;; Copyright © 2024 Igor Goryachev <[email protected]>
;;; Copyright © 2024 Nguyễn Gia Phong <[email protected]>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1028,7 +1029,8 @@ authentication.")
(list
(string-append "CFLAGS=-I"
(assoc-ref %build-inputs "gst-plugins-base")
- "/include/gstreamer-1.0")
+ "/include/gstreamer-1.0"
+ " -Wno-error=incompatible-pointer-types")
"--disable-gtkspell"
"--disable-gevolution"
"--enable-cap"