]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fiber/include/boost/fiber/detail/config.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / fiber / include / boost / fiber / detail / config.hpp
1
2 // Copyright Oliver Kowalke 2013.
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_FIBERS_DETAIL_CONFIG_H
8 #define BOOST_FIBERS_DETAIL_CONFIG_H
9
10 #include <boost/config.hpp>
11 #include <boost/detail/workaround.hpp>
12
13 #ifdef BOOST_FIBERS_DECL
14 # undef BOOST_FIBERS_DECL
15 #endif
16
17 #if (defined(BOOST_ALL_DYN_LINK) || defined(BOOST_FIBERS_DYN_LINK) ) && ! defined(BOOST_FIBERS_STATIC_LINK)
18 # if defined(BOOST_FIBERS_SOURCE)
19 # define BOOST_FIBERS_DECL BOOST_SYMBOL_EXPORT
20 # define BOOST_FIBERS_BUILD_DLL
21 # else
22 # define BOOST_FIBERS_DECL BOOST_SYMBOL_IMPORT
23 # endif
24 #endif
25
26 #if ! defined(BOOST_FIBERS_DECL)
27 # define BOOST_FIBERS_DECL
28 #endif
29
30 #if ! defined(BOOST_FIBERS_SOURCE) && ! defined(BOOST_ALL_NO_LIB) && ! defined(BOOST_FIBERS_NO_LIB)
31 # define BOOST_LIB_NAME boost_fiber
32 # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_FIBERS_DYN_LINK)
33 # define BOOST_DYN_LINK
34 # endif
35 # include <boost/config/auto_link.hpp>
36 #endif
37
38 #endif // BOOST_FIBERS_DETAIL_CONFIG_H