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 1f01028ef5 gnu: gtksheet: Fix build with gcc-14.
1f01028ef5 is described below
commit 1f01028ef5e3ef67fc8fc30b12779cc0cc68b4fa
Author: Andreas Enge <[email protected]>
AuthorDate: Fri Aug 1 16:12:26 2025 +0200
gnu: gtksheet: Fix build with gcc-14.
* gnu/packages/gtk.scm (gtksheet)[arguments]<#:configure-flags>: Expand
CFLAGS.
Change-Id: Ieac93c560566832b1cff413fa7aee37a9175135d
---
gnu/packages/gtk.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 44620c186a..c0d54bfe18 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -2899,9 +2899,11 @@ library for drawing.")
"13jwr1vly4ga3f09dajwky1cdrz5bmggwga3vnnd6j6zzia7dpyr"))))
(build-system gnu-build-system)
(arguments
- `(#:configure-flags (list "--enable-glade"
- "--enable-introspection"
- "CFLAGS=-fcommon")
+ `(#:configure-flags
+ (list
+ "--enable-glade"
+ "--enable-introspection"
+ "CFLAGS=-fcommon -Wno-error=incompatible-pointer-types")
#:phases
(modify-phases %standard-phases
;; The "configure" script is present, but otherwise the project is