diff options
author | Matthieu Dorier <mdorier@anl.gov> | 2021-04-13 14:18:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 13:18:28 +0000 |
commit | e320b1d7e44d6bea1bd926180e4f555b1c409392 (patch) | |
tree | b1eb712a3e3911887f351624a75a4f2bb391d754 /var | |
parent | c11af21da24bcf4ee36814738064987ed2b07917 (diff) | |
download | spack-e320b1d7e44d6bea1bd926180e4f555b1c409392.tar.gz spack-e320b1d7e44d6bea1bd926180e4f555b1c409392.tar.bz2 spack-e320b1d7e44d6bea1bd926180e4f555b1c409392.tar.xz spack-e320b1d7e44d6bea1bd926180e4f555b1c409392.zip |
berkeley-db: making +cxx and +stl default to True (#22960)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/berkeley-db/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/berkeley-db/package.py b/var/spack/repos/builtin/packages/berkeley-db/package.py index 4c405960ee..d2c79fc8db 100644 --- a/var/spack/repos/builtin/packages/berkeley-db/package.py +++ b/var/spack/repos/builtin/packages/berkeley-db/package.py @@ -19,8 +19,8 @@ class BerkeleyDb(AutotoolsPackage): version('5.3.28', sha256='e0a992d740709892e81f9d93f06daf305cf73fb81b545afe72478043172c3628') variant('docs', default=False) - variant('cxx', default=False, description='Build with C++ API') - variant('stl', default=False, description='Build with C++ STL API') + variant('cxx', default=True, description='Build with C++ API') + variant('stl', default=True, description='Build with C++ STL API') configure_directory = 'dist' build_directory = 'build_unix' |