tauola: Fix build: The current build wants lhapdf headers by default (#26154)
The hand-written `configure` script of this package does not handle --without-<feature> at all. The source wants to use `lhapdf` headers even if support of lhapdf is not indicated using `--with-lhapdf`. Enable the variant `lhapdf` by default: It fixes the build of the current package and provides the TauSpinner feature as well.
This commit is contained in:
parent
13d313d3ad
commit
2eddc60baa
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class Tauola(AutotoolsPackage):
|
|||
|
||||
variant('hepmc', default=True, description="Enable hepmc 2.x support")
|
||||
variant('hepmc3', default=False, description="Enable hepmc3 support")
|
||||
variant('lhapdf', default=False, description="Enable lhapdf support")
|
||||
variant('lhapdf', default=True, description="Enable lhapdf support")
|
||||
variant('cxxstd',
|
||||
default='11',
|
||||
values=('11', '14', '17', '20'),
|
||||
|
|
Loading…
Reference in a new issue