diff options
| author | Aaron Covrig <aaron.covrig.us@ieee.org> | 2025-08-08 20:40:37 -0400 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-09 09:50:36 +0200 |
| commit | 175a368b9c3c023b22925d7b0ef3cbb616cd55cc (patch) | |
| tree | 27754e8024924b4fdc0741cd103a69aa32c24160 /gnu/packages/game-development.scm | |
| parent | 3eb1ceac58985c0407f3ade1cfa72dbee1b7886a (diff) | |
gnu: quesoglc: Fix build with gcc-14.
* gnu/packages/game-development.scm (quesoglc)[arguments]
<#:configure-flags>: Add CFLAGS to turn pointer checks into warnings.
Fixes: guix/guix#1894
Change-Id: I9cca0e190b1eb0d15bf34040df868152beb6424b
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/game-development.scm')
| -rw-r--r-- | gnu/packages/game-development.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 4d60ff60d1c..4a9122a66d5 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1490,6 +1490,10 @@ It offers the following features: (base32 "08ddhywdy2qg17m592ng3yr0p1ih96irg8wg729g75hsxxq9ipks")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags + ;; Disable added pointer type checks (quesoglc no longer maintained) + '("CFLAGS=-Wnoerror=incompatible-pointer-types"))) (native-inputs (list pkg-config)) (inputs (list fontconfig freeglut fribidi glew)) (home-page "https://quesoglc.sourceforge.net") |
