diff options
author | David Craven <david@craven.ch> | 2017-01-07 18:56:10 +0100 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2017-01-11 11:23:43 -0500 |
commit | c96cb01a8894430f4b472b0fc9ae1fe99f81fb38 (patch) | |
tree | 181aad047ebfcf958fcc60487c6ae2c5807ca007 /gnu/packages/algebra.scm | |
parent | 9e485ffa1b90e90207f53fcf58f43e29b639f852 (diff) |
Revert "gnu: Add threaded variants of fftw and fftwf for Ardour and mod-host."
These variants are no longer needed.
Followup to 86f4e9d76a75c405b3b6c5b3f1717df0e45f4e68.
This reverts commit 45591fd7fde1a400a416cb99939f6dd766445f94.
Diffstat (limited to 'gnu/packages/algebra.scm')
-rw-r--r-- | gnu/packages/algebra.scm | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index d09e2e83b2..b859da0e7e 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -577,23 +577,6 @@ cosine/ sine transforms or DCT/DST).") (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") |