mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
Revert "gnu: Add threaded variants of fftw and fftwf for Ardour and mod-host."
These variants are no longer needed. Followup to86f4e9d76a
. This reverts commit45591fd7fd
.
This commit is contained in:
parent
9e485ffa1b
commit
c96cb01a88
3 changed files with 4 additions and 21 deletions
|
@ -577,23 +577,6 @@ (define-public fftwf
|
|||
(string-append (package-description fftw)
|
||||
" Single-precision version."))))
|
||||
|
||||
(define (pthread-variant p)
|
||||
(package
|
||||
(inherit p)
|
||||
(name (string-append (package-name p) "-pthreads"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments fftw)
|
||||
((#:configure-flags flags)
|
||||
`(cons "--enable-threads" ,flags))))))
|
||||
|
||||
;; FIXME: These packages are used temporarily by packages like Ardour until
|
||||
;; "--enable-flags" is added to the fftw and fftwf packages.
|
||||
(define-public fftw-with-threads
|
||||
(pthread-variant fftw))
|
||||
|
||||
(define-public fftwf-with-threads
|
||||
(pthread-variant fftwf))
|
||||
|
||||
(define-public fftw-openmpi
|
||||
(package (inherit fftw)
|
||||
(name "fftw-openmpi")
|
||||
|
|
|
@ -238,8 +238,8 @@ (define-public ardour
|
|||
("lv2" ,lv2)
|
||||
("vamp" ,vamp)
|
||||
("curl" ,curl)
|
||||
("fftw" ,fftw-with-threads)
|
||||
("fftwf" ,fftwf-with-threads)
|
||||
("fftw" ,fftw)
|
||||
("fftwf" ,fftwf)
|
||||
("jack" ,jack-1)
|
||||
("serd" ,serd)
|
||||
("sord" ,sord)
|
||||
|
|
|
@ -1889,8 +1889,8 @@ (define-public mod-host
|
|||
#t)))))
|
||||
(inputs
|
||||
`(("lilv" ,lilv)
|
||||
("fftw" ,fftw-with-threads)
|
||||
("fftwf" ,fftwf-with-threads)
|
||||
("fftw" ,fftw)
|
||||
("fftwf" ,fftwf)
|
||||
("lv2" ,lv2)
|
||||
("jack" ,jack-1)
|
||||
("readline" ,readline)))
|
||||
|
|
Loading…
Reference in a new issue