janneke pushed a commit to branch core-packages-team
in repository guix.
commit fc4a67eadc54bfbb593bcd8cd0dba095fdf52e9e
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Jan 5 12:03:38 2025 +0100
gnu: gucharmap: Fix build with gcc-14.
* gnu/packages/gnome.scm (gucharmap)[argument]: Add CFLAGS to
#:configure-flags
to relax gcc-14's strictness.
Change-Id: I234d21da13a688029e306a793d5348e17c6c9042
---
gnu/packages/gnome.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 26b4c7e7a9..1f8972cd75 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11505,7 +11505,9 @@ basically a text box in which notes can be written.")
(guix build glib-or-gtk-build-system)
(guix build utils))
#:configure-flags
- (list "--with-unicode-data=../unicode-data")
+ (list
+ "CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types"
+ "--with-unicode-data=../unicode-data")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'prepare-unicode-data