Make openmp variant false by default.

This commit is contained in:
Patrick Gartung 2016-04-20 09:41:19 -05:00
parent a588a1fd84
commit f8c14e1d98

View File

@ -42,7 +42,7 @@ class Fftw(Package):
variant('float', default=True, description='Produces a single precision version of the library')
variant('long_double', default=True, description='Produces a long double precision version of the library')
variant('quad', default=False, description='Produces a quad precision version of the library (works only with GCC and libquadmath)')
variant('openmp', default=True, description="Enable OpenMP support.")
variant('openmp', default=False, description="Enable OpenMP support.")
variant('mpi', default=False, description='Activate MPI support')
depends_on('mpi', when='+mpi')