z572 pushed a commit to branch core-packages-team
in repository guix.
commit 719d5a03f6bd226652779348abef69c06eb1e75e
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 f6ac865512..ddb24d9144 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -46,6 +46,7 @@
;;; Copyright © 2024 Ashish SHUKLA <[email protected]>
;;; Copyright © 2024, 2025 Igor Goryachev <[email protected]>
;;; Copyright © 2024 Nguyễn Gia Phong <[email protected]>
+;;; Copyright © 2025 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"