diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-20 23:52:16 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-20 23:52:30 +0100 |
commit | 071ce730403c4918a2456b6fba7351ced451c26b (patch) | |
tree | d26caff88b125e5d4bdee931e4487a07193779c4 | |
parent | 5cc948bb46c3e4ad360c5ab61112e148fd8cb9d8 (diff) |
gnu: goocanvas: Fix build with gcc@14.
* gnu/packages/gtk.scm (goocanvas) [arguments] <configure-flags>: Ignore
warning on "incompatible-pointer-types".
Change-Id: Iaf73e7bc701a68367528e9d7afc057f193153d4f
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 27b850ac8e..a6b1a8af0a 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2896,7 +2896,8 @@ popovers.") (list cairo glib gtk+ python-pygobject)) (arguments `(#:configure-flags '("--disable-rebuilds" - "--disable-static") + "--disable-static" + "CFLAGS=-Wno-error=incompatible-pointer-types") #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-install-path |