guix_mirror_bot pushed a commit to branch master
in repository guix.

commit f3097c1f45d2a959f09d851c0c2e01dbaf30a927
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Oct 13 12:56:43 2025 +0100

    gnu: xnee: Fix build with gcc-14.
    
    * gnu/packages/xdisorg.scm (xnee): Use G-Expressions.
    [configure-flags]: Relax GCC 14 strictness.
    
    Change-Id: I592138f24c97df48b0ad8ae7573a9751e53d0a52
---
 gnu/packages/xdisorg.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 095e0ecaf1..941664f21a 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -189,8 +189,13 @@
          "04n2lac0vgpv8zsn7nmb50hf3qb56pmj90dmwnivg09gyrf1x92j"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:configure-flags '("CFLAGS=-O2 -g -fcommon")
-       #:make-flags '("LIBSEMA=-lpthread")))
+     (list
+      #:configure-flags
+      #~(list (string-join
+               (list "CFLAGS=" "-O2" "-g" "-fcommon"
+                     "-Wno-error=implicit-function-declaration")
+               " "))
+      #:make-flags #~(list "LIBSEMA=-lpthread")))
     (inputs
      (list gtk+-2
            libx11

Reply via email to