guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 4dc2f76c99772c3c19bb60939b936d274042923e Author: Janneke Nieuwenhuizen <[email protected]> AuthorDate: Sun Jan 5 13:34:57 2025 +0100 gnu: guile-gi: Fix build with gcc-14. * gnu/packages/guile-xyz.scm (guile-gi)[arguments]: Add CFLAGS to #:configure-flags to relax gcc-14's strictness. Change-Id: I1aa6b2118f09e12e3ce06833e56d624fd047a9ae --- gnu/packages/guile-xyz.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 0bfab0e98f..d83ea6ee0b 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016, 2017, 2021 Alex Kost <[email protected]> ;;; Copyright © 2016, 2017 Adonay "adfeno" Felipe Nogueira <https://libreplanet.org/wiki/User:Adfeno> <[email protected]> ;;; Copyright © 2016, 2021 Amirouche <[email protected]> -;;; Copyright © 2016, 2019, 2021, 2023, 2024 Janneke Nieuwenhuizen <[email protected]> +;;; Copyright © 2016, 2019, 2021, 2023, 2024, 2025 Janneke Nieuwenhuizen <[email protected]> ;;; Copyright © 2017 Andy Wingo <[email protected]> ;;; Copyright © 2017 David Thompson <[email protected]> ;;; Copyright © 2017, 2018, 2019, 2020 Mathieu Othacehe <[email protected]> @@ -4378,7 +4378,8 @@ list of components. This module takes care of that for you.") "019mbhgyga57k2074kg97mh3qsa8ny9l0kjgqids8cg3c6vbjdby")))) (build-system glib-or-gtk-build-system) (arguments - `(#:configure-flags '("--with-gnu-filesystem-hierarchy") + `(#:configure-flags '("CFLAGS=-Wno-error=incompatible-pointer-types" + "--with-gnu-filesystem-hierarchy") #:modules ((guix build glib-or-gtk-build-system) (guix build utils) (ice-9 popen)
