diff options
author | Andreas Enge <andreas@enge.fr> | 2025-07-27 00:19:11 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-27 00:53:32 +0200 |
commit | dd40365248bcfb7401e0efa3bfcec35bbf66bf1c (patch) | |
tree | 7a80ea616fec31e3d0ac62ab382b6fdbf6b092a2 | |
parent | 655040ecb11b786bb33b87355ccf59dc252c9c99 (diff) |
gnu: obconf: Fix build with gcc-14.
* gnu/packages/openbox.scm (obconf)[arguments]<#:configure-flags>:
Add CFLAGS.
Change-Id: Ia73375926999ea6c5eddd37c91a237206f2b21be
-rw-r--r-- | gnu/packages/openbox.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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 |