janneke pushed a commit to branch core-packages-team
in repository guix.

commit 8f9e9b38bd53742570c3285eb4e1820e5c60e4d2
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
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 1ee8255593..9724154be5 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -46,6 +46,7 @@
 ;;; Copyright © 2024 Ashish SHUKLA <ashish...@lostca.se>
 ;;; Copyright © 2024, 2025 Igor Goryachev <i...@goryachev.org>
 ;;; Copyright © 2024 Nguyễn Gia Phong <mcsi...@disroot.org>
+;;; Copyright © 2025 Janneke Nieuwenhuizen <jann...@gnu.org>
 ;;;
 ;;; 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"

Reply via email to