summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-13 12:56:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-13 12:56:50 +0100
commitf3097c1f45d2a959f09d851c0c2e01dbaf30a927 (patch)
tree287fa05d376e873ecc9e32be523a8e04a7c86c3b /gnu
parente03ecb45c22a067904f10e3b32d13419e72a9d08 (diff)
gnu: xnee: Fix build with gcc-14.
* gnu/packages/xdisorg.scm (xnee): Use G-Expressions. [configure-flags]: Relax GCC 14 strictness. Change-Id: I592138f24c97df48b0ad8ae7573a9751e53d0a52
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/xdisorg.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 095e0ecaf19..941664f21a8 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