janneke pushed a commit to branch core-packages-team-old in repository guix.
commit 68533a49a7398dd7fa0db761383d96be50b5a629 Author: Janneke Nieuwenhuizen <[email protected]> AuthorDate: Sun Jan 5 13:31:10 2025 +0100 gnu: midori: Fix build with gcc-14. * gnu/packages/web-browsers.scm (midori)[arguments]: Add #:configure-flags to relax gcc-14's strictness. Change-Id: I5495e04836fb469db9d5c418cf53ef2e653c8751 --- gnu/packages/web-browsers.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index df3335b4d8..06a600bdb4 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -23,6 +23,7 @@ ;;; Copyright © 2021 Christopher Howard <[email protected]> ;;; Copyright © 2023 Herman Rimm <[email protected]> ;;; Copyright © 2024 Zheng Junjie <[email protected]> +;;; Copyright © 2025 Janneke Nieuwenhuizen <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -130,6 +131,8 @@ ((guix build cmake-build-system) ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:) (guix build utils)) + #:configure-flags + '("-DCMAKE_C_FLAGS=-Wno-error=int-conversion") #:phases (modify-phases %standard-phases (add-after 'install 'glib-or-gtk-compile-schemas
