diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2025-07-21 20:37:27 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-07-22 01:47:58 -0400 |
commit | 8167c3e95a9fa211d48ad3e4a65582f458542568 (patch) | |
tree | 7560f87e9c9d3d097a07297ef3298c4f4ff120bb | |
parent | e3cbe143852f40e005d43e9816200ec6cab62257 (diff) |
gnu: lxsession: Fix build with GCC 14.
* gnu/packages/lxde.scm (lxsession) [#:configure-flags]: Add CFLAGS with
'-Wno-error=incompatible-pointer-types'.
Change-Id: I456fcb17ac5114a9e6977b29be956b931083a75d
-rw-r--r-- | gnu/packages/lxde.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index 904bfa7158..edd38c290b 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -549,7 +549,9 @@ in LXDE.") (find-files "." generated-c-file?)))))) (build-system gnu-build-system) (arguments - `(#:configure-flags (list "--enable-gtk3") + `(#:configure-flags (list "--enable-gtk3" + ;; Fix build with GCC 14. + "CFLAGS=-Wno-error=incompatible-pointer-types") #:phases (modify-phases %standard-phases (add-after 'unpack 'rm-stamp |