Skip to content
Snippets Groups Projects
Unverified Commit b43812c7 authored by Dr. Christian Tacke's avatar Dr. Christian Tacke Committed by GitHub
Browse files

boost: Add "container" library (#14878)

"container" is partly a misnomer, as it's realy
the extended allocators part of container.

But every part calls it container, so we do too.
parent 059203b2
No related branches found
No related tags found
No related merge requests found
...@@ -96,8 +96,12 @@ class Boost(Package): ...@@ -96,8 +96,12 @@ class Boost(Package):
# mpi/python are not installed by default because they pull in many # mpi/python are not installed by default because they pull in many
# dependencies and/or because there is a great deal of customization # dependencies and/or because there is a great deal of customization
# possible (and it would be difficult to choose sensible defaults) # possible (and it would be difficult to choose sensible defaults)
#
# Boost.Container can be both header-only and compiled. '+container'
# indicates the compiled version which requires Extended Allocator
# support. The header-only library is installed when no variant is given.
default_noinstall_libs\ default_noinstall_libs\
= set(['context', 'coroutine', 'fiber', 'mpi', 'python']) = set(['container', 'context', 'coroutine', 'fiber', 'mpi', 'python'])
all_libs = default_install_libs | default_noinstall_libs all_libs = default_install_libs | default_noinstall_libs
...@@ -174,6 +178,9 @@ def libs(self): ...@@ -174,6 +178,9 @@ def libs(self):
conflicts('+taggedlayout', when='+versionedlayout') conflicts('+taggedlayout', when='+versionedlayout')
conflicts('+numpy', when='~python') conflicts('+numpy', when='~python')
# Container's Extended Allocators were not added until 1.56.0
conflicts('+container', when='@:1.55.99')
# Patch fix from https://svn.boost.org/trac/boost/ticket/11856 # Patch fix from https://svn.boost.org/trac/boost/ticket/11856
patch('boost_11856.patch', when='@1.60.0%gcc@4.4.7') patch('boost_11856.patch', when='@1.60.0%gcc@4.4.7')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment