config.hpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // boost/system/config.hpp -----------------------------------------------------------//
  2. // Copyright Beman Dawes 2003, 2006
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/system for documentation.
  6. #ifndef BOOST_SYSTEM_CONFIG_HPP
  7. #define BOOST_SYSTEM_CONFIG_HPP
  8. #include <boost/config.hpp>
  9. #include <boost/predef/platform.h>
  10. #include <boost/system/api_config.hpp> // for BOOST_POSIX_API or BOOST_WINDOWS_API
  11. // This header implements separate compilation features as described in
  12. // http://www.boost.org/more/separate_compilation.html
  13. // normalize macros ------------------------------------------------------------------//
  14. #if !defined(BOOST_SYSTEM_DYN_LINK) && !defined(BOOST_SYSTEM_STATIC_LINK) \
  15. && !defined(BOOST_ALL_DYN_LINK) && !defined(BOOST_ALL_STATIC_LINK)
  16. # define BOOST_SYSTEM_STATIC_LINK
  17. #endif
  18. #if defined(BOOST_ALL_DYN_LINK) && !defined(BOOST_SYSTEM_DYN_LINK)
  19. # define BOOST_SYSTEM_DYN_LINK
  20. #elif defined(BOOST_ALL_STATIC_LINK) && !defined(BOOST_SYSTEM_STATIC_LINK)
  21. # define BOOST_SYSTEM_STATIC_LINK
  22. #endif
  23. #if defined(BOOST_SYSTEM_DYN_LINK) && defined(BOOST_SYSTEM_STATIC_LINK)
  24. # error Must not define both BOOST_SYSTEM_DYN_LINK and BOOST_SYSTEM_STATIC_LINK
  25. #endif
  26. // enable dynamic or static linking as requested --------------------------------------//
  27. #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SYSTEM_DYN_LINK)
  28. # if defined(BOOST_SYSTEM_SOURCE)
  29. # define BOOST_SYSTEM_DECL BOOST_SYMBOL_EXPORT
  30. # else
  31. # define BOOST_SYSTEM_DECL BOOST_SYMBOL_IMPORT
  32. # endif
  33. #else
  34. # define BOOST_SYSTEM_DECL
  35. #endif
  36. // enable automatic library variant selection ----------------------------------------//
  37. #if !defined(BOOST_SYSTEM_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SYSTEM_NO_LIB)
  38. //
  39. // Set the name of our library, this will get undef'ed by auto_link.hpp
  40. // once it's done with it:
  41. //
  42. #define BOOST_LIB_NAME boost_system
  43. //
  44. // If we're importing code from a dll, then tell auto_link.hpp about it:
  45. //
  46. #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SYSTEM_DYN_LINK)
  47. # define BOOST_DYN_LINK
  48. #endif
  49. //
  50. // And include the header that does the work:
  51. //
  52. #include <boost/config/auto_link.hpp>
  53. #endif // auto-linking disabled
  54. #endif // BOOST_SYSTEM_CONFIG_HPP