diff options
author | Andreas Enge <andreas@enge.fr> | 2025-08-01 16:12:26 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-08-01 16:12:26 +0200 |
commit | 1f01028ef5e3ef67fc8fc30b12779cc0cc68b4fa (patch) | |
tree | 9a0ac8adebbd24d1d9d34837146e34b6e0a1b2e0 /gnu | |
parent | 108b7d5381985fd9dcd3f643fbc3a766ddd096a4 (diff) |
gnu: gtksheet: Fix build with gcc-14.
* gnu/packages/gtk.scm (gtksheet)[arguments]<#:configure-flags>: Expand
CFLAGS.
Change-Id: Ieac93c560566832b1cff413fa7aee37a9175135d
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 8 |
1 files 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 |