123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED
- #define BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED
- #ifndef BOOST_CONFIG_HPP
- # include <boost/config.hpp>
- #endif
- #if defined(BOOST_HAS_PRAGMA_ONCE)
- # pragma once
- #endif
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_CONTAINER_DYN_LINK)
- # define BOOST_CONTAINER_DYNAMIC_LINKING
- #endif
- #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_CONTAINER_NO_LIB) && !defined(BOOST_CONTAINER_SOURCE)
- #define BOOST_LIB_NAME boost_container
- #if defined(BOOST_CONTAINER_DYNAMIC_LINKING)
- # define BOOST_DYN_LINK
- #endif
- #include <boost/config/auto_link.hpp>
- #endif
- #endif
|