]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/coroutine2/include/boost/coroutine2/detail/config.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / coroutine2 / include / boost / coroutine2 / detail / config.hpp
1
2 // Copyright Oliver Kowalke 2014.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6
7 #ifndef BOOST_COROUTINES2_DETAIL_CONFIG_H
8 #define BOOST_COROUTINES2_DETAIL_CONFIG_H
9
10 #include <boost/config.hpp>
11 #include <boost/context/detail/config.hpp>
12 #include <boost/detail/workaround.hpp>
13
14 #ifdef BOOST_COROUTINES2_DECL
15 # undef BOOST_COROUTINES2_DECL
16 #endif
17
18 #if (defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COROUTINES2_DYN_LINK) ) && ! defined(BOOST_COROUTINES2_STATIC_LINK)
19 # if defined(BOOST_COROUTINES2_SOURCE)
20 # define BOOST_COROUTINES2_DECL BOOST_SYMBOL_EXPORT
21 # define BOOST_COROUTINES2_BUILD_DLL
22 # else
23 # define BOOST_COROUTINES2_DECL BOOST_SYMBOL_IMPORT
24 # endif
25 #endif
26
27 #if ! defined(BOOST_COROUTINES2_DECL)
28 # define BOOST_COROUTINES2_DECL
29 #endif
30
31 #if ! defined(BOOST_COROUTINES2_SOURCE) && ! defined(BOOST_ALL_NO_LIB) && ! defined(BOOST_COROUTINES2_NO_LIB)
32 # define BOOST_LIB_NAME boost_coroutine
33 # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COROUTINES2_DYN_LINK)
34 # define BOOST_DYN_LINK
35 # endif
36 # include <boost/config/auto_link.hpp>
37 #endif
38
39 #endif // BOOST_COROUTINES2_DETAIL_CONFIG_H