mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: vkquake: Fix build with newer Vulkan headers.
* gnu/packages/games.scm (vkquake)[arguments]: Add phase 'patch-for-new-vulkan'.
This commit is contained in:
parent
5a746104e3
commit
51f3b34913
1 changed files with 8 additions and 0 deletions
|
@ -5807,6 +5807,14 @@ (define-public vkquake
|
|||
(string-append "LDFLAGS=-Wl,-rpath=" vulkanlib)
|
||||
"-CQuake"))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-for-new-vulkan
|
||||
(lambda _
|
||||
;; Mimic upstream commit a869a22d9b51c68e for
|
||||
;; compatibility with newer vulkan-headers.
|
||||
(substitute* "Quake/gl_rmisc.c"
|
||||
(("VK_DYNAMIC_STATE_RANGE_SIZE")
|
||||
"3"))
|
||||
#t))
|
||||
(delete 'configure)
|
||||
(add-after 'unpack 'fix-makefile-paths
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue