diff options
author | Kaelyn Takata <kaelyn.alexi@protonmail.com> | 2023-04-27 17:38:46 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-19 16:46:34 +0200 |
commit | 8c302c2e261bdba06d7b077aaf1bf1712ded2f40 (patch) | |
tree | 472f60377cfb7e11fb6c21ae35d290d1f4ad7b67 /gnu/packages/game-development.scm | |
parent | e637794875c32cfa90c135558666be0acda24747 (diff) | |
download | guix-8c302c2e261bdba06d7b077aaf1bf1712ded2f40.tar guix-8c302c2e261bdba06d7b077aaf1bf1712ded2f40.tar.gz |
gnu: openmw: Fix build on glibc 2.34 and newer.
* gnu/packages/patches/openmw-assume-nonconst-SIGSTKSZ.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it here.
* gnu/packages/game-development.scm (openmw)[source]<patches>: Use it here.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index be2ae96274..a2acf15c5c 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1776,7 +1776,8 @@ of use.") (file-name (git-file-name name version)) (sha256 (base32 - "19mcbnjl4279qalb97msf965bjax48mx1r1qczyvwhn28h6n3bsy")))) + "19mcbnjl4279qalb97msf965bjax48mx1r1qczyvwhn28h6n3bsy")) + (patches (search-patches "openmw-assume-nonconst-SIGSTKSZ.patch")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; No test target |