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:
bernhardkaindl 2021-09-25 04:16:59 +02:00 committed by GitHub
parent 13d313d3ad
commit 2eddc60baa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'),