gnu: jack-2: Fix build by patching fast_rand.
* gnu/packages/audio.scm (jack-2)[arguments]: Add phase "patch-fast_rand" to apply upstream fixes.
This commit is contained in:
parent
5707ce6e4b
commit
56f76b08be
|
@ -1286,6 +1286,15 @@ synchronous execution of all clients, and low latency operation.")
|
||||||
"--alsa")
|
"--alsa")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-fast_rand
|
||||||
|
(lambda _
|
||||||
|
(substitute* "common/memops.c"
|
||||||
|
;; Fixed in upstream commit d3c8e2d8d78899fba40a3e677ed4dbe388d82269
|
||||||
|
(("^inline unsigned int fast_rand" line)
|
||||||
|
(string-append "static " line))
|
||||||
|
;; Fixed in upstream commit 0279a2d65a36d1378f5bab56d95bf9e99cc8cefb
|
||||||
|
((" 96314165") " 196314165"))
|
||||||
|
#t))
|
||||||
(add-before
|
(add-before
|
||||||
'configure 'set-linkflags
|
'configure 'set-linkflags
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in New Issue