mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: jack-2: Update to 1.9.14.
* gnu/packages/audio.scm (jack-2): Update to 1.9.14. [arguments]: Add environment variable to phase 'set-linkflags. Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
f5163902d7
commit
52139ce5b7
1 changed files with 6 additions and 2 deletions
|
@ -2030,7 +2030,7 @@ (define-public jack-1
|
|||
(define-public jack-2
|
||||
(package (inherit jack-1)
|
||||
(name "jack2")
|
||||
(version "1.9.13")
|
||||
(version "1.9.14")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/jackaudio/jack2/releases/"
|
||||
|
@ -2039,7 +2039,7 @@ (define-public jack-2
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1d1d403jn4366mqig6g8ghr8057b3rn7gs26b5p3rkal34j20qw2"))))
|
||||
"0z11hf55a6mi8h50hfz5wry9pshlwl4mzfwgslghdh40cwv342m2"))))
|
||||
(build-system waf-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
|
@ -2049,6 +2049,10 @@ (define-public jack-2
|
|||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'set-linkflags
|
||||
(lambda _
|
||||
;; Ensure -lstdc++ is the tail of LDFLAGS or the simdtests.cpp
|
||||
;; will not link with undefined reference to symbol
|
||||
;; '__gxx_personality_v0@@CXXABI_1.3'
|
||||
(setenv "LDFLAGS" "-lstdc++")
|
||||
;; Add $libdir to the RUNPATH of all the binaries.
|
||||
(substitute* "wscript"
|
||||
((".*CFLAGS.*-Wall.*" m)
|
||||
|
|
Loading…
Reference in a new issue