| 1 | |
| 2 | // Copyright Oliver Kowalke 2009. |
| 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_COROUTINES_DETAIL_CONFIG_H |
| 8 | #define BOOST_COROUTINES_DETAIL_CONFIG_H |
| 9 | |
| 10 | #include <boost/config.hpp> |
| 11 | #include <boost/detail/workaround.hpp> |
| 12 | |
| 13 | #ifdef BOOST_COROUTINES_DECL |
| 14 | # undef BOOST_COROUTINES_DECL |
| 15 | #endif |
| 16 | |
| 17 | #if (defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COROUTINES_DYN_LINK) ) && ! defined(BOOST_COROUTINES_STATIC_LINK) |
| 18 | # if defined(BOOST_COROUTINES_SOURCE) |
| 19 | # define BOOST_COROUTINES_DECL BOOST_SYMBOL_EXPORT |
| 20 | # define BOOST_COROUTINES_BUILD_DLL |
| 21 | # else |
| 22 | # define BOOST_COROUTINES_DECL BOOST_SYMBOL_IMPORT |
| 23 | # endif |
| 24 | #endif |
| 25 | |
| 26 | #if ! defined(BOOST_COROUTINES_DECL) |
| 27 | # define BOOST_COROUTINES_DECL |
| 28 | #endif |
| 29 | |
| 30 | #if ! defined(BOOST_COROUTINES_SOURCE) && ! defined(BOOST_ALL_NO_LIB) && ! defined(BOOST_COROUTINES_NO_LIB) |
| 31 | # define BOOST_LIB_NAME boost_coroutine |
| 32 | # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COROUTINES_DYN_LINK) |
| 33 | # define BOOST_DYN_LINK |
| 34 | # endif |
| 35 | # include <boost/config/auto_link.hpp> |
| 36 | #endif |
| 37 | |
| 38 | #define BOOST_COROUTINES_UNIDIRECT |
| 39 | #define BOOST_COROUTINES_SYMMETRIC |
| 40 | |
| 41 | #if defined(__OpenBSD__) |
| 42 | // stacks need mmap(2) with MAP_STACK |
| 43 | # define BOOST_COROUTINES_USE_MAP_STACK |
| 44 | #endif |
| 45 | |
| 46 | #endif // BOOST_COROUTINES_DETAIL_CONFIG_H |
| 47 | |