suite-sparse: mpfr, gmp needed for @5.8.0: (#19898)

This commit is contained in:
eugeneswalker 2020-11-13 10:12:02 -08:00 committed by GitHub
parent b08744566d
commit 3a3bf5387e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,8 +35,8 @@ class SuiteSparse(Package):
variant('cuda', default=False, description='Build with CUDA')
variant('openmp', default=False, description='Build with OpenMP')
depends_on('mpfr', type=('build', 'link'))
depends_on('gmp', type=('build', 'link'))
depends_on('mpfr', type=('build', 'link'), when='@5.8.0:')
depends_on('gmp', type=('build', 'link'), when='@5.8.0:')
depends_on('blas')
depends_on('lapack')
depends_on('m4', type='build', when='@5.0.0:')