summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/kea/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/kea/package.py')
-rw-r--r--var/spack/repos/builtin/packages/kea/package.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/kea/package.py b/var/spack/repos/builtin/packages/kea/package.py
index 0c6d5d9495..4563501608 100644
--- a/var/spack/repos/builtin/packages/kea/package.py
+++ b/var/spack/repos/builtin/packages/kea/package.py
@@ -4,6 +4,7 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
+from spack.pkg.builtin.boost import Boost
class Kea(AutotoolsPackage):
@@ -19,4 +20,8 @@ class Kea(AutotoolsPackage):
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('log4cplus')
- depends_on('boost')
+
+ # TODO: replace this with an explicit list of components of Boost,
+ # for instance depends_on('boost +filesystem')
+ # See https://github.com/spack/spack/pull/22303 for reference
+ depends_on(Boost.with_default_variants)