guix_mirror_bot pushed a commit to branch master
in repository guix.
commit dd40365248bcfb7401e0efa3bfcec35bbf66bf1c
Author: Andreas Enge <[email protected]>
AuthorDate: Sun Jul 27 00:19:11 2025 +0200
gnu: obconf: Fix build with gcc-14.
* gnu/packages/openbox.scm (obconf)[arguments]<#:configure-flags>:
Add CFLAGS.
Change-Id: Ia73375926999ea6c5eddd37c91a237206f2b21be
---
gnu/packages/openbox.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/openbox.scm b/gnu/packages/openbox.scm
index cd12c9b261..130b0bae54 100644
--- a/gnu/packages/openbox.scm
+++ b/gnu/packages/openbox.scm
@@ -107,7 +107,9 @@ implementations.")
(build-system gnu-build-system)
(arguments
(list
- #:configure-flags (list "--enable-nls")))
+ #:configure-flags
+ #~(list "--enable-nls"
+ "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")))
(home-page "https://openbox.org/obconf")
(synopsis "Openbox configuration tool")
(description