Detail headers moved

Hi, I’m trying to build Boost.Graph and running into missing header files that used to live in boost/detail and now live elsewhere. Here’s a couple of examples of headers that moved and the code that still expects to find them there: detail/container_fwd.hpp libs/functional/include/boost/functional/hash/extensions.hpp: #include <boost/detail/container_fwd.hpp> libs/lambda/include/boost/lambda/detail/operator_return_type_traits.hpp: #include "boost/detail/container_fwd.hpp" libs/phoenix/include/boost/phoenix/stl/algorithm/detail/is_std_list.hpp: #include <boost/detail/container_fwd.hpp> libs/phoenix/include/boost/phoenix/stl/algorithm/detail/is_std_map.hpp: #include <boost/detail/container_fwd.hpp> libs/phoenix/include/boost/phoenix/stl/algorithm/detail/is_std_set.hpp: #include <boost/detail/container_fwd.hpp> detail/indirect_traits.hpp libs/iterator/include/boost/iterator/detail/facade_iterator_category.hpp: #include <boost/detail/indirect_traits.hpp> libs/iterator/include/boost/iterator/indirect_iterator.hpp: #include <boost/detail/indirect_traits.hpp> It seems that indirect_traits.hpp was moved from detail into python/detail, and container_fwd.hpp into container. Just curious but was it intentional to make many Boost libraries depend on Python through boost/iterator/iterator_facade.hpp? Noel

Belcourt, Kenneth wrote:
Hi,
I’m trying to build Boost.Graph and running into missing header files that used to live in boost/detail and now live elsewhere. Here’s a couple of examples of headers that moved and the code that still expects to find them there:
detail/container_fwd.hpp
...
detail/indirect_traits.hpp
...
It seems that indirect_traits.hpp was moved from detail into python/detail, and container_fwd.hpp into container.
Both headers are still in Detail (boostorg/detail). https://github.com/boostorg/detail/blob/develop/include/boost/detail/contain... https://github.com/boostorg/detail/blob/develop/include/boost/detail/indirec... What made you think that they are missing?

On May 26, 2017, at 5:12 PM, Peter Dimov via Boost <boost@lists.boost.org> wrote:
Belcourt, Kenneth wrote:
Hi,
I’m trying to build Boost.Graph and running into missing header files that used to live in boost/detail and now live elsewhere. Here’s a couple of examples of headers that moved and the code that still expects to find them there:
detail/container_fwd.hpp
...
detail/indirect_traits.hpp
...
It seems that indirect_traits.hpp was moved from detail into python/detail, and container_fwd.hpp into container.
Both headers are still in Detail (boostorg/detail).
https://github.com/boostorg/detail/blob/develop/include/boost/detail/contain... https://github.com/boostorg/detail/blob/develop/include/boost/detail/indirec...
What made you think that they are missing?
b2 headers doesn’t install them, at least a clean clone from earlier today didn’t seem to.

On May 26, 2017, at 5:14 PM, Belcourt, Kenneth via Boost <boost@lists.boost.org> wrote:
On May 26, 2017, at 5:12 PM, Peter Dimov via Boost <boost@lists.boost.org> wrote:
Belcourt, Kenneth wrote:
Hi,
I’m trying to build Boost.Graph and running into missing header files that used to live in boost/detail and now live elsewhere. Here’s a couple of examples of headers that moved and the code that still expects to find them there:
detail/container_fwd.hpp
...
detail/indirect_traits.hpp
...
It seems that indirect_traits.hpp was moved from detail into python/detail, and container_fwd.hpp into container.
Both headers are still in Detail (boostorg/detail).
https://github.com/boostorg/detail/blob/develop/include/boost/detail/contain... https://github.com/boostorg/detail/blob/develop/include/boost/detail/indirec...
What made you think that they are missing?
b2 headers doesn’t install them, at least a clean clone from earlier today didn’t seem to.
A clean clone followed by b2 headers worked, the headers are there. My bad.
participants (2)
-
Belcourt, Kenneth
-
Peter Dimov