diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2025-11-27 08:37:52 -0500 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-11-30 13:50:11 +0100 |
| commit | 13f29e11fd57db2dbf2598d8ed7f8dfef15ce68c (patch) | |
| tree | 13188f890e686cc66f008b341ac2bdae4e4ea83d | |
| parent | b422f0c493c75d22fc3d4422c8619361348c0448 (diff) | |
gnu: xshogi: Fix build.
* gnu/packages/games.scm (xshogi)[#:configure-flags]: Add
"CFLAGS=-Wno-error=implicit-function-declaration".
Change-Id: I5b60c577090f979098a923bc9f95e8d61dd0b41c
Signed-off-by: Andreas Enge <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/games.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3dea40748d2..38e7a3cf3b3 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3733,6 +3733,10 @@ equipped with spoken co-driver notes and co-driver icons.") (base32 "1dns0nhymak44by18sv48m4xb2skiwbi2i3nb9hl6w9iwd2i2brf")))) (build-system gnu-build-system) + (arguments + (list + #:configure-flags + #~(list "CFLAGS=-Wno-error=implicit-function-declaration"))) (inputs (list libxaw libxt)) (home-page "https://www.gnu.org/software/gnushogi/") |
