guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 06539b16071397902da26ca3342ce1ea794c2789
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
    Modified-by: Zheng Junjie <[email protected]>
---
 gnu/packages/web-browsers.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index e3e069f01e..471fcfb2af 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -24,6 +24,7 @@
 ;;; Copyright © 2023 Herman Rimm <[email protected]>
 ;;; Copyright © 2024 Zheng Junjie <[email protected]>
 ;;; Copyright © 2025 Sergey Trofimov <[email protected]>
+;;; Copyright © 2025 Janneke Nieuwenhuizen <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -137,6 +138,9 @@
        ((guix build cmake-build-system)
         ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
         (guix build utils))
+       #:configure-flags
+       ;; Relax gcc-14's strictness.
+       '("-DCMAKE_C_FLAGS=-Wno-error=int-conversion")
        #:phases
        (modify-phases %standard-phases
          (add-after 'install 'glib-or-gtk-compile-schemas

Reply via email to