config.hpp 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. //
  2. // detail/config.hpp
  3. // ~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_DETAIL_CONFIG_HPP
  11. #define BOOST_ASIO_DETAIL_CONFIG_HPP
  12. #if defined(BOOST_ASIO_STANDALONE)
  13. # define BOOST_ASIO_DISABLE_BOOST_ARRAY 1
  14. # define BOOST_ASIO_DISABLE_BOOST_ASSERT 1
  15. # define BOOST_ASIO_DISABLE_BOOST_BIND 1
  16. # define BOOST_ASIO_DISABLE_BOOST_CHRONO 1
  17. # define BOOST_ASIO_DISABLE_BOOST_DATE_TIME 1
  18. # define BOOST_ASIO_DISABLE_BOOST_LIMITS 1
  19. # define BOOST_ASIO_DISABLE_BOOST_REGEX 1
  20. # define BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT 1
  21. # define BOOST_ASIO_DISABLE_BOOST_THROW_EXCEPTION 1
  22. # define BOOST_ASIO_DISABLE_BOOST_WORKAROUND 1
  23. #else // defined(BOOST_ASIO_STANDALONE)
  24. # include <boost/config.hpp>
  25. # include <boost/version.hpp>
  26. # define BOOST_ASIO_HAS_BOOST_CONFIG 1
  27. #endif // defined(BOOST_ASIO_STANDALONE)
  28. // Default to a header-only implementation. The user must specifically request
  29. // separate compilation by defining either BOOST_ASIO_SEPARATE_COMPILATION or
  30. // BOOST_ASIO_DYN_LINK (as a DLL/shared library implies separate compilation).
  31. #if !defined(BOOST_ASIO_HEADER_ONLY)
  32. # if !defined(BOOST_ASIO_SEPARATE_COMPILATION)
  33. # if !defined(BOOST_ASIO_DYN_LINK)
  34. # define BOOST_ASIO_HEADER_ONLY 1
  35. # endif // !defined(BOOST_ASIO_DYN_LINK)
  36. # endif // !defined(BOOST_ASIO_SEPARATE_COMPILATION)
  37. #endif // !defined(BOOST_ASIO_HEADER_ONLY)
  38. #if defined(BOOST_ASIO_HEADER_ONLY)
  39. # define BOOST_ASIO_DECL inline
  40. #else // defined(BOOST_ASIO_HEADER_ONLY)
  41. # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__CODEGEARC__)
  42. // We need to import/export our code only if the user has specifically asked
  43. // for it by defining BOOST_ASIO_DYN_LINK.
  44. # if defined(BOOST_ASIO_DYN_LINK)
  45. // Export if this is our own source, otherwise import.
  46. # if defined(BOOST_ASIO_SOURCE)
  47. # define BOOST_ASIO_DECL __declspec(dllexport)
  48. # else // defined(BOOST_ASIO_SOURCE)
  49. # define BOOST_ASIO_DECL __declspec(dllimport)
  50. # endif // defined(BOOST_ASIO_SOURCE)
  51. # endif // defined(BOOST_ASIO_DYN_LINK)
  52. # endif // defined(_MSC_VER) || defined(__BORLANDC__) || defined(__CODEGEARC__)
  53. #endif // defined(BOOST_ASIO_HEADER_ONLY)
  54. // If BOOST_ASIO_DECL isn't defined yet define it now.
  55. #if !defined(BOOST_ASIO_DECL)
  56. # define BOOST_ASIO_DECL
  57. #endif // !defined(BOOST_ASIO_DECL)
  58. // Microsoft Visual C++ detection.
  59. #if !defined(BOOST_ASIO_MSVC)
  60. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_MSVC)
  61. # define BOOST_ASIO_MSVC BOOST_MSVC
  62. # elif defined(_MSC_VER) && !defined(__MWERKS__) && !defined(__EDG_VERSION__)
  63. # define BOOST_ASIO_MSVC _MSC_VER
  64. # endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_MSVC)
  65. #endif // defined(BOOST_ASIO_MSVC)
  66. // Clang / libc++ detection.
  67. #if defined(__clang__)
  68. # if (__cplusplus >= 201103)
  69. # if __has_include(<__config>)
  70. # include <__config>
  71. # if defined(_LIBCPP_VERSION)
  72. # define BOOST_ASIO_HAS_CLANG_LIBCXX 1
  73. # endif // defined(_LIBCPP_VERSION)
  74. # endif // __has_include(<__config>)
  75. # endif // (__cplusplus >= 201103)
  76. #endif // defined(__clang__)
  77. // Support move construction and assignment on compilers known to allow it.
  78. #if !defined(BOOST_ASIO_HAS_MOVE)
  79. # if !defined(BOOST_ASIO_DISABLE_MOVE)
  80. # if defined(__clang__)
  81. # if __has_feature(__cxx_rvalue_references__)
  82. # define BOOST_ASIO_HAS_MOVE 1
  83. # endif // __has_feature(__cxx_rvalue_references__)
  84. # endif // defined(__clang__)
  85. # if defined(__GNUC__)
  86. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  87. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  88. # define BOOST_ASIO_HAS_MOVE 1
  89. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  90. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  91. # endif // defined(__GNUC__)
  92. # if defined(BOOST_ASIO_MSVC)
  93. # if (_MSC_VER >= 1700)
  94. # define BOOST_ASIO_HAS_MOVE 1
  95. # endif // (_MSC_VER >= 1700)
  96. # endif // defined(BOOST_ASIO_MSVC)
  97. # endif // !defined(BOOST_ASIO_DISABLE_MOVE)
  98. #endif // !defined(BOOST_ASIO_HAS_MOVE)
  99. // If BOOST_ASIO_MOVE_CAST isn't defined, and move support is available, define
  100. // BOOST_ASIO_MOVE_ARG and BOOST_ASIO_MOVE_CAST to take advantage of rvalue
  101. // references and perfect forwarding.
  102. #if defined(BOOST_ASIO_HAS_MOVE) && !defined(BOOST_ASIO_MOVE_CAST)
  103. # define BOOST_ASIO_MOVE_ARG(type) type&&
  104. # define BOOST_ASIO_MOVE_CAST(type) static_cast<type&&>
  105. # define BOOST_ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&>
  106. #endif // defined(BOOST_ASIO_HAS_MOVE) && !defined(BOOST_ASIO_MOVE_CAST)
  107. // If BOOST_ASIO_MOVE_CAST still isn't defined, default to a C++03-compatible
  108. // implementation. Note that older g++ and MSVC versions don't like it when you
  109. // pass a non-member function through a const reference, so for most compilers
  110. // we'll play it safe and stick with the old approach of passing the handler by
  111. // value.
  112. #if !defined(BOOST_ASIO_MOVE_CAST)
  113. # if defined(__GNUC__)
  114. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ > 4)
  115. # define BOOST_ASIO_MOVE_ARG(type) const type&
  116. # else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ > 4)
  117. # define BOOST_ASIO_MOVE_ARG(type) type
  118. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ > 4)
  119. # elif defined(BOOST_ASIO_MSVC)
  120. # if (_MSC_VER >= 1400)
  121. # define BOOST_ASIO_MOVE_ARG(type) const type&
  122. # else // (_MSC_VER >= 1400)
  123. # define BOOST_ASIO_MOVE_ARG(type) type
  124. # endif // (_MSC_VER >= 1400)
  125. # else
  126. # define BOOST_ASIO_MOVE_ARG(type) type
  127. # endif
  128. # define BOOST_ASIO_MOVE_CAST(type) static_cast<const type&>
  129. # define BOOST_ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&>
  130. #endif // !defined(BOOST_ASIO_MOVE_CAST)
  131. // Support variadic templates on compilers known to allow it.
  132. #if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  133. # if !defined(BOOST_ASIO_DISABLE_VARIADIC_TEMPLATES)
  134. # if defined(__clang__)
  135. # if __has_feature(__cxx_variadic_templates__)
  136. # define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
  137. # endif // __has_feature(__cxx_variadic_templates__)
  138. # endif // defined(__clang__)
  139. # if defined(__GNUC__)
  140. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
  141. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  142. # define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
  143. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  144. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
  145. # endif // defined(__GNUC__)
  146. # endif // !defined(BOOST_ASIO_DISABLE_VARIADIC_TEMPLATES)
  147. #endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  148. // Support constexpr on compilers known to allow it.
  149. #if !defined(BOOST_ASIO_HAS_CONSTEXPR)
  150. # if !defined(BOOST_ASIO_DISABLE_CONSTEXPR)
  151. # if defined(__clang__)
  152. # if __has_feature(__cxx_constexpr__)
  153. # define BOOST_ASIO_HAS_CONSTEXPR 1
  154. # endif // __has_feature(__cxx_constexr__)
  155. # endif // defined(__clang__)
  156. # if defined(__GNUC__)
  157. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  158. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  159. # define BOOST_ASIO_HAS_CONSTEXPR 1
  160. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  161. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  162. # endif // defined(__GNUC__)
  163. # endif // !defined(BOOST_ASIO_DISABLE_CONSTEXPR)
  164. #endif // !defined(BOOST_ASIO_HAS_CONSTEXPR)
  165. #if !defined(BOOST_ASIO_CONSTEXPR)
  166. # if defined(BOOST_ASIO_HAS_CONSTEXPR)
  167. # define BOOST_ASIO_CONSTEXPR constexpr
  168. # else // defined(BOOST_ASIO_HAS_CONSTEXPR)
  169. # define BOOST_ASIO_CONSTEXPR
  170. # endif // defined(BOOST_ASIO_HAS_CONSTEXPR)
  171. #endif // !defined(BOOST_ASIO_CONSTEXPR)
  172. // Standard library support for system errors.
  173. # if !defined(BOOST_ASIO_DISABLE_STD_SYSTEM_ERROR)
  174. # if defined(__clang__)
  175. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  176. # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
  177. # elif (__cplusplus >= 201103)
  178. # if __has_include(<system_error>)
  179. # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
  180. # endif // __has_include(<system_error>)
  181. # endif // (__cplusplus >= 201103)
  182. # endif // defined(__clang__)
  183. # if defined(__GNUC__)
  184. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  185. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  186. # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
  187. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  188. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  189. # endif // defined(__GNUC__)
  190. # if defined(BOOST_ASIO_MSVC)
  191. # if (_MSC_VER >= 1700)
  192. # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
  193. # endif // (_MSC_VER >= 1700)
  194. # endif // defined(BOOST_ASIO_MSVC)
  195. # endif // !defined(BOOST_ASIO_DISABLE_STD_SYSTEM_ERROR)
  196. // Compliant C++11 compilers put noexcept specifiers on error_category members.
  197. #if !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
  198. # if (BOOST_VERSION >= 105300)
  199. # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT BOOST_NOEXCEPT
  200. # elif defined(__clang__)
  201. # if __has_feature(__cxx_noexcept__)
  202. # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
  203. # endif // __has_feature(__cxx_noexcept__)
  204. # elif defined(__GNUC__)
  205. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
  206. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  207. # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
  208. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  209. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
  210. # elif defined(BOOST_ASIO_MSVC)
  211. # if (_MSC_VER >= 1900)
  212. # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
  213. # endif // (_MSC_VER >= 1900)
  214. # endif // defined(BOOST_ASIO_MSVC)
  215. # if !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
  216. # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT
  217. # endif // !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
  218. #endif // !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
  219. // Standard library support for arrays.
  220. #if !defined(BOOST_ASIO_HAS_STD_ARRAY)
  221. # if !defined(BOOST_ASIO_DISABLE_STD_ARRAY)
  222. # if defined(__clang__)
  223. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  224. # define BOOST_ASIO_HAS_STD_ARRAY 1
  225. # elif (__cplusplus >= 201103)
  226. # if __has_include(<array>)
  227. # define BOOST_ASIO_HAS_STD_ARRAY 1
  228. # endif // __has_include(<array>)
  229. # endif // (__cplusplus >= 201103)
  230. # endif // defined(__clang__)
  231. # if defined(__GNUC__)
  232. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
  233. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  234. # define BOOST_ASIO_HAS_STD_ARRAY 1
  235. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  236. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
  237. # endif // defined(__GNUC__)
  238. # if defined(BOOST_ASIO_MSVC)
  239. # if (_MSC_VER >= 1600)
  240. # define BOOST_ASIO_HAS_STD_ARRAY 1
  241. # endif // (_MSC_VER >= 1600)
  242. # endif // defined(BOOST_ASIO_MSVC)
  243. # endif // !defined(BOOST_ASIO_DISABLE_STD_ARRAY)
  244. #endif // !defined(BOOST_ASIO_HAS_STD_ARRAY)
  245. // Standard library support for shared_ptr and weak_ptr.
  246. #if !defined(BOOST_ASIO_HAS_STD_SHARED_PTR)
  247. # if !defined(BOOST_ASIO_DISABLE_STD_SHARED_PTR)
  248. # if defined(__clang__)
  249. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  250. # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
  251. # elif (__cplusplus >= 201103)
  252. # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
  253. # endif // (__cplusplus >= 201103)
  254. # endif // defined(__clang__)
  255. # if defined(__GNUC__)
  256. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
  257. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  258. # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
  259. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  260. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
  261. # endif // defined(__GNUC__)
  262. # if defined(BOOST_ASIO_MSVC)
  263. # if (_MSC_VER >= 1600)
  264. # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
  265. # endif // (_MSC_VER >= 1600)
  266. # endif // defined(BOOST_ASIO_MSVC)
  267. # endif // !defined(BOOST_ASIO_DISABLE_STD_SHARED_PTR)
  268. #endif // !defined(BOOST_ASIO_HAS_STD_SHARED_PTR)
  269. // Standard library support for atomic operations.
  270. #if !defined(BOOST_ASIO_HAS_STD_ATOMIC)
  271. # if !defined(BOOST_ASIO_DISABLE_STD_ATOMIC)
  272. # if defined(__clang__)
  273. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  274. # define BOOST_ASIO_HAS_STD_ATOMIC 1
  275. # elif (__cplusplus >= 201103)
  276. # if __has_include(<atomic>)
  277. # define BOOST_ASIO_HAS_STD_ATOMIC 1
  278. # endif // __has_include(<atomic>)
  279. # endif // (__cplusplus >= 201103)
  280. # endif // defined(__clang__)
  281. # if defined(__GNUC__)
  282. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  283. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  284. # define BOOST_ASIO_HAS_STD_ATOMIC 1
  285. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  286. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  287. # endif // defined(__GNUC__)
  288. # if defined(BOOST_ASIO_MSVC)
  289. # if (_MSC_VER >= 1700)
  290. # define BOOST_ASIO_HAS_STD_ATOMIC 1
  291. # endif // (_MSC_VER >= 1700)
  292. # endif // defined(BOOST_ASIO_MSVC)
  293. # endif // !defined(BOOST_ASIO_DISABLE_STD_ATOMIC)
  294. #endif // !defined(BOOST_ASIO_HAS_STD_ATOMIC)
  295. // Standard library support for chrono. Some standard libraries (such as the
  296. // libstdc++ shipped with gcc 4.6) provide monotonic_clock as per early C++0x
  297. // drafts, rather than the eventually standardised name of steady_clock.
  298. #if !defined(BOOST_ASIO_HAS_STD_CHRONO)
  299. # if !defined(BOOST_ASIO_DISABLE_STD_CHRONO)
  300. # if defined(__clang__)
  301. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  302. # define BOOST_ASIO_HAS_STD_CHRONO 1
  303. # elif (__cplusplus >= 201103)
  304. # if __has_include(<chrono>)
  305. # define BOOST_ASIO_HAS_STD_CHRONO 1
  306. # endif // __has_include(<chrono>)
  307. # endif // (__cplusplus >= 201103)
  308. # endif // defined(__clang__)
  309. # if defined(__GNUC__)
  310. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  311. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  312. # define BOOST_ASIO_HAS_STD_CHRONO 1
  313. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ == 6))
  314. # define BOOST_ASIO_HAS_STD_CHRONO_MONOTONIC_CLOCK 1
  315. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ == 6))
  316. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  317. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  318. # endif // defined(__GNUC__)
  319. # if defined(BOOST_ASIO_MSVC)
  320. # if (_MSC_VER >= 1700)
  321. # define BOOST_ASIO_HAS_STD_CHRONO 1
  322. # endif // (_MSC_VER >= 1700)
  323. # endif // defined(BOOST_ASIO_MSVC)
  324. # endif // !defined(BOOST_ASIO_DISABLE_STD_CHRONO)
  325. #endif // !defined(BOOST_ASIO_HAS_STD_CHRONO)
  326. // Boost support for chrono.
  327. #if !defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  328. # if !defined(BOOST_ASIO_DISABLE_BOOST_CHRONO)
  329. # if (BOOST_VERSION >= 104700)
  330. # define BOOST_ASIO_HAS_BOOST_CHRONO 1
  331. # endif // (BOOST_VERSION >= 104700)
  332. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_CHRONO)
  333. #endif // !defined(BOOST_ASIO_HAS_BOOST_CHRONO)
  334. // Boost support for the DateTime library.
  335. #if !defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
  336. # if !defined(BOOST_ASIO_DISABLE_BOOST_DATE_TIME)
  337. # define BOOST_ASIO_HAS_BOOST_DATE_TIME 1
  338. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_DATE_TIME)
  339. #endif // !defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
  340. // Standard library support for addressof.
  341. #if !defined(BOOST_ASIO_HAS_STD_ADDRESSOF)
  342. # if !defined(BOOST_ASIO_DISABLE_STD_ADDRESSOF)
  343. # if defined(__clang__)
  344. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  345. # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
  346. # elif (__cplusplus >= 201103)
  347. # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
  348. # endif // (__cplusplus >= 201103)
  349. # endif // defined(__clang__)
  350. # if defined(__GNUC__)
  351. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  352. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  353. # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
  354. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  355. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
  356. # endif // defined(__GNUC__)
  357. # if defined(BOOST_ASIO_MSVC)
  358. # if (_MSC_VER >= 1700)
  359. # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
  360. # endif // (_MSC_VER >= 1700)
  361. # endif // defined(BOOST_ASIO_MSVC)
  362. # endif // !defined(BOOST_ASIO_DISABLE_STD_ADDRESSOF)
  363. #endif // !defined(BOOST_ASIO_HAS_STD_ADDRESSOF)
  364. // Standard library support for the function class.
  365. #if !defined(BOOST_ASIO_HAS_STD_FUNCTION)
  366. # if !defined(BOOST_ASIO_DISABLE_STD_FUNCTION)
  367. # if defined(__clang__)
  368. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  369. # define BOOST_ASIO_HAS_STD_FUNCTION 1
  370. # elif (__cplusplus >= 201103)
  371. # define BOOST_ASIO_HAS_STD_FUNCTION 1
  372. # endif // (__cplusplus >= 201103)
  373. # endif // defined(__clang__)
  374. # if defined(__GNUC__)
  375. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  376. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  377. # define BOOST_ASIO_HAS_STD_FUNCTION 1
  378. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  379. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  380. # endif // defined(__GNUC__)
  381. # if defined(BOOST_ASIO_MSVC)
  382. # if (_MSC_VER >= 1700)
  383. # define BOOST_ASIO_HAS_STD_FUNCTION 1
  384. # endif // (_MSC_VER >= 1700)
  385. # endif // defined(BOOST_ASIO_MSVC)
  386. # endif // !defined(BOOST_ASIO_DISABLE_STD_FUNCTION)
  387. #endif // !defined(BOOST_ASIO_HAS_STD_FUNCTION)
  388. // Standard library support for type traits.
  389. #if !defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS)
  390. # if !defined(BOOST_ASIO_DISABLE_STD_TYPE_TRAITS)
  391. # if defined(__clang__)
  392. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  393. # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
  394. # elif (__cplusplus >= 201103)
  395. # if __has_include(<type_traits>)
  396. # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
  397. # endif // __has_include(<type_traits>)
  398. # endif // (__cplusplus >= 201103)
  399. # endif // defined(__clang__)
  400. # if defined(__GNUC__)
  401. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  402. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  403. # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
  404. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  405. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  406. # endif // defined(__GNUC__)
  407. # if defined(BOOST_ASIO_MSVC)
  408. # if (_MSC_VER >= 1700)
  409. # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
  410. # endif // (_MSC_VER >= 1700)
  411. # endif // defined(BOOST_ASIO_MSVC)
  412. # endif // !defined(BOOST_ASIO_DISABLE_STD_TYPE_TRAITS)
  413. #endif // !defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS)
  414. // Standard library support for the cstdint header.
  415. #if !defined(BOOST_ASIO_HAS_CSTDINT)
  416. # if !defined(BOOST_ASIO_DISABLE_CSTDINT)
  417. # if defined(__clang__)
  418. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  419. # define BOOST_ASIO_HAS_CSTDINT 1
  420. # elif (__cplusplus >= 201103)
  421. # define BOOST_ASIO_HAS_CSTDINT 1
  422. # endif // (__cplusplus >= 201103)
  423. # endif // defined(__clang__)
  424. # if defined(__GNUC__)
  425. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  426. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  427. # define BOOST_ASIO_HAS_CSTDINT 1
  428. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  429. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
  430. # endif // defined(__GNUC__)
  431. # if defined(BOOST_ASIO_MSVC)
  432. # if (_MSC_VER >= 1700)
  433. # define BOOST_ASIO_HAS_CSTDINT 1
  434. # endif // (_MSC_VER >= 1700)
  435. # endif // defined(BOOST_ASIO_MSVC)
  436. # endif // !defined(BOOST_ASIO_DISABLE_CSTDINT)
  437. #endif // !defined(BOOST_ASIO_HAS_CSTDINT)
  438. // Standard library support for the thread class.
  439. #if !defined(BOOST_ASIO_HAS_STD_THREAD)
  440. # if !defined(BOOST_ASIO_DISABLE_STD_THREAD)
  441. # if defined(__clang__)
  442. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  443. # define BOOST_ASIO_HAS_STD_THREAD 1
  444. # elif (__cplusplus >= 201103)
  445. # if __has_include(<thread>)
  446. # define BOOST_ASIO_HAS_STD_THREAD 1
  447. # endif // __has_include(<thread>)
  448. # endif // (__cplusplus >= 201103)
  449. # endif // defined(__clang__)
  450. # if defined(__GNUC__)
  451. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
  452. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  453. # define BOOST_ASIO_HAS_STD_THREAD 1
  454. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  455. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
  456. # endif // defined(__GNUC__)
  457. # if defined(BOOST_ASIO_MSVC)
  458. # if (_MSC_VER >= 1700)
  459. # define BOOST_ASIO_HAS_STD_THREAD 1
  460. # endif // (_MSC_VER >= 1700)
  461. # endif // defined(BOOST_ASIO_MSVC)
  462. # endif // !defined(BOOST_ASIO_DISABLE_STD_THREAD)
  463. #endif // !defined(BOOST_ASIO_HAS_STD_THREAD)
  464. // Standard library support for the mutex and condition variable classes.
  465. #if !defined(BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR)
  466. # if !defined(BOOST_ASIO_DISABLE_STD_MUTEX_AND_CONDVAR)
  467. # if defined(__clang__)
  468. # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
  469. # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
  470. # elif (__cplusplus >= 201103)
  471. # if __has_include(<mutex>)
  472. # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
  473. # endif // __has_include(<mutex>)
  474. # endif // (__cplusplus >= 201103)
  475. # endif // defined(__clang__)
  476. # if defined(__GNUC__)
  477. # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
  478. # if defined(__GXX_EXPERIMENTAL_CXX0X__)
  479. # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
  480. # endif // defined(__GXX_EXPERIMENTAL_CXX0X__)
  481. # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
  482. # endif // defined(__GNUC__)
  483. # if defined(BOOST_ASIO_MSVC)
  484. # if (_MSC_VER >= 1700)
  485. # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
  486. # endif // (_MSC_VER >= 1700)
  487. # endif // defined(BOOST_ASIO_MSVC)
  488. # endif // !defined(BOOST_ASIO_DISABLE_STD_MUTEX_AND_CONDVAR)
  489. #endif // !defined(BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR)
  490. // Windows App target. Windows but with a limited API.
  491. #if !defined(BOOST_ASIO_WINDOWS_APP)
  492. # if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0603)
  493. # include <winapifamily.h>
  494. # if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) \
  495. && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  496. # define BOOST_ASIO_WINDOWS_APP 1
  497. # endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
  498. // && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  499. # endif // defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0603)
  500. #endif // !defined(BOOST_ASIO_WINDOWS_APP)
  501. // Legacy WinRT target. Windows App is preferred.
  502. #if !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  503. # if !defined(BOOST_ASIO_WINDOWS_APP)
  504. # if defined(__cplusplus_winrt)
  505. # include <winapifamily.h>
  506. # if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) \
  507. && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  508. # define BOOST_ASIO_WINDOWS_RUNTIME 1
  509. # endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
  510. // && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  511. # endif // defined(__cplusplus_winrt)
  512. # endif // !defined(BOOST_ASIO_WINDOWS_APP)
  513. #endif // !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  514. // Windows target. Excludes WinRT but includes Windows App targets.
  515. #if !defined(BOOST_ASIO_WINDOWS)
  516. # if !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  517. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_WINDOWS)
  518. # define BOOST_ASIO_WINDOWS 1
  519. # elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
  520. # define BOOST_ASIO_WINDOWS 1
  521. # elif defined(BOOST_ASIO_WINDOWS_APP)
  522. # define BOOST_ASIO_WINDOWS 1
  523. # endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_WINDOWS)
  524. # endif // !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  525. #endif // !defined(BOOST_ASIO_WINDOWS)
  526. // Windows: target OS version.
  527. #if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  528. # if !defined(_WIN32_WINNT) && !defined(_WIN32_WINDOWS)
  529. # if defined(_MSC_VER) || defined(__BORLANDC__)
  530. # pragma message( \
  531. "Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example:\n"\
  532. "- add -D_WIN32_WINNT=0x0501 to the compiler command line; or\n"\
  533. "- add _WIN32_WINNT=0x0501 to your project's Preprocessor Definitions.\n"\
  534. "Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target).")
  535. # else // defined(_MSC_VER) || defined(__BORLANDC__)
  536. # warning Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately.
  537. # warning For example, add -D_WIN32_WINNT=0x0501 to the compiler command line.
  538. # warning Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target).
  539. # endif // defined(_MSC_VER) || defined(__BORLANDC__)
  540. # define _WIN32_WINNT 0x0501
  541. # endif // !defined(_WIN32_WINNT) && !defined(_WIN32_WINDOWS)
  542. # if defined(_MSC_VER)
  543. # if defined(_WIN32) && !defined(WIN32)
  544. # if !defined(_WINSOCK2API_)
  545. # define WIN32 // Needed for correct types in winsock2.h
  546. # else // !defined(_WINSOCK2API_)
  547. # error Please define the macro WIN32 in your compiler options
  548. # endif // !defined(_WINSOCK2API_)
  549. # endif // defined(_WIN32) && !defined(WIN32)
  550. # endif // defined(_MSC_VER)
  551. # if defined(__BORLANDC__)
  552. # if defined(__WIN32__) && !defined(WIN32)
  553. # if !defined(_WINSOCK2API_)
  554. # define WIN32 // Needed for correct types in winsock2.h
  555. # else // !defined(_WINSOCK2API_)
  556. # error Please define the macro WIN32 in your compiler options
  557. # endif // !defined(_WINSOCK2API_)
  558. # endif // defined(__WIN32__) && !defined(WIN32)
  559. # endif // defined(__BORLANDC__)
  560. # if defined(__CYGWIN__)
  561. # if !defined(__USE_W32_SOCKETS)
  562. # error You must add -D__USE_W32_SOCKETS to your compiler options.
  563. # endif // !defined(__USE_W32_SOCKETS)
  564. # endif // defined(__CYGWIN__)
  565. #endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  566. // Windows: minimise header inclusion.
  567. #if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  568. # if !defined(BOOST_ASIO_NO_WIN32_LEAN_AND_MEAN)
  569. # if !defined(WIN32_LEAN_AND_MEAN)
  570. # define WIN32_LEAN_AND_MEAN
  571. # endif // !defined(WIN32_LEAN_AND_MEAN)
  572. # endif // !defined(BOOST_ASIO_NO_WIN32_LEAN_AND_MEAN)
  573. #endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  574. // Windows: suppress definition of "min" and "max" macros.
  575. #if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  576. # if !defined(BOOST_ASIO_NO_NOMINMAX)
  577. # if !defined(NOMINMAX)
  578. # define NOMINMAX 1
  579. # endif // !defined(NOMINMAX)
  580. # endif // !defined(BOOST_ASIO_NO_NOMINMAX)
  581. #endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  582. // Windows: IO Completion Ports.
  583. #if !defined(BOOST_ASIO_HAS_IOCP)
  584. # if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  585. # if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0400)
  586. # if !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
  587. # if !defined(BOOST_ASIO_DISABLE_IOCP)
  588. # define BOOST_ASIO_HAS_IOCP 1
  589. # endif // !defined(BOOST_ASIO_DISABLE_IOCP)
  590. # endif // !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
  591. # endif // defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0400)
  592. # endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  593. #endif // !defined(BOOST_ASIO_HAS_IOCP)
  594. // On POSIX (and POSIX-like) platforms we need to include unistd.h in order to
  595. // get access to the various platform feature macros, e.g. to be able to test
  596. // for threads support.
  597. #if !defined(BOOST_ASIO_HAS_UNISTD_H)
  598. # if !defined(BOOST_ASIO_HAS_BOOST_CONFIG)
  599. # if defined(unix) \
  600. || defined(__unix) \
  601. || defined(_XOPEN_SOURCE) \
  602. || defined(_POSIX_SOURCE) \
  603. || (defined(__MACH__) && defined(__APPLE__)) \
  604. || defined(__FreeBSD__) \
  605. || defined(__NetBSD__) \
  606. || defined(__OpenBSD__) \
  607. || defined(__linux__)
  608. # define BOOST_ASIO_HAS_UNISTD_H 1
  609. # endif
  610. # endif // !defined(BOOST_ASIO_HAS_BOOST_CONFIG)
  611. #endif // !defined(BOOST_ASIO_HAS_UNISTD_H)
  612. #if defined(BOOST_ASIO_HAS_UNISTD_H)
  613. # include <unistd.h>
  614. #endif // defined(BOOST_ASIO_HAS_UNISTD_H)
  615. // Linux: epoll, eventfd and timerfd.
  616. #if defined(__linux__)
  617. # include <linux/version.h>
  618. # if !defined(BOOST_ASIO_HAS_EPOLL)
  619. # if !defined(BOOST_ASIO_DISABLE_EPOLL)
  620. # if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,45)
  621. # define BOOST_ASIO_HAS_EPOLL 1
  622. # endif // LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,45)
  623. # endif // !defined(BOOST_ASIO_DISABLE_EPOLL)
  624. # endif // !defined(BOOST_ASIO_HAS_EPOLL)
  625. # if !defined(BOOST_ASIO_HAS_EVENTFD)
  626. # if !defined(BOOST_ASIO_DISABLE_EVENTFD)
  627. # if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
  628. # define BOOST_ASIO_HAS_EVENTFD 1
  629. # endif // LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
  630. # endif // !defined(BOOST_ASIO_DISABLE_EVENTFD)
  631. # endif // !defined(BOOST_ASIO_HAS_EVENTFD)
  632. # if !defined(BOOST_ASIO_HAS_TIMERFD)
  633. # if defined(BOOST_ASIO_HAS_EPOLL)
  634. # if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8)
  635. # define BOOST_ASIO_HAS_TIMERFD 1
  636. # endif // (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8)
  637. # endif // defined(BOOST_ASIO_HAS_EPOLL)
  638. # endif // !defined(BOOST_ASIO_HAS_TIMERFD)
  639. #endif // defined(__linux__)
  640. // Mac OS X, FreeBSD, NetBSD, OpenBSD: kqueue.
  641. #if (defined(__MACH__) && defined(__APPLE__)) \
  642. || defined(__FreeBSD__) \
  643. || defined(__NetBSD__) \
  644. || defined(__OpenBSD__)
  645. # if !defined(BOOST_ASIO_HAS_KQUEUE)
  646. # if !defined(BOOST_ASIO_DISABLE_KQUEUE)
  647. # define BOOST_ASIO_HAS_KQUEUE 1
  648. # endif // !defined(BOOST_ASIO_DISABLE_KQUEUE)
  649. # endif // !defined(BOOST_ASIO_HAS_KQUEUE)
  650. #endif // (defined(__MACH__) && defined(__APPLE__))
  651. // || defined(__FreeBSD__)
  652. // || defined(__NetBSD__)
  653. // || defined(__OpenBSD__)
  654. // Solaris: /dev/poll.
  655. #if defined(__sun)
  656. # if !defined(BOOST_ASIO_HAS_DEV_POLL)
  657. # if !defined(BOOST_ASIO_DISABLE_DEV_POLL)
  658. # define BOOST_ASIO_HAS_DEV_POLL 1
  659. # endif // !defined(BOOST_ASIO_DISABLE_DEV_POLL)
  660. # endif // !defined(BOOST_ASIO_HAS_DEV_POLL)
  661. #endif // defined(__sun)
  662. // Serial ports.
  663. #if !defined(BOOST_ASIO_HAS_SERIAL_PORT)
  664. # if defined(BOOST_ASIO_HAS_IOCP) \
  665. || !defined(BOOST_ASIO_WINDOWS) \
  666. && !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
  667. && !defined(__CYGWIN__)
  668. # if !defined(__SYMBIAN32__)
  669. # if !defined(BOOST_ASIO_DISABLE_SERIAL_PORT)
  670. # define BOOST_ASIO_HAS_SERIAL_PORT 1
  671. # endif // !defined(BOOST_ASIO_DISABLE_SERIAL_PORT)
  672. # endif // !defined(__SYMBIAN32__)
  673. # endif // defined(BOOST_ASIO_HAS_IOCP)
  674. // || !defined(BOOST_ASIO_WINDOWS)
  675. // && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  676. // && !defined(__CYGWIN__)
  677. #endif // !defined(BOOST_ASIO_HAS_SERIAL_PORT)
  678. // Windows: stream handles.
  679. #if !defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
  680. # if !defined(BOOST_ASIO_DISABLE_WINDOWS_STREAM_HANDLE)
  681. # if defined(BOOST_ASIO_HAS_IOCP)
  682. # define BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE 1
  683. # endif // defined(BOOST_ASIO_HAS_IOCP)
  684. # endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_STREAM_HANDLE)
  685. #endif // !defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
  686. // Windows: random access handles.
  687. #if !defined(BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE)
  688. # if !defined(BOOST_ASIO_DISABLE_WINDOWS_RANDOM_ACCESS_HANDLE)
  689. # if defined(BOOST_ASIO_HAS_IOCP)
  690. # define BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE 1
  691. # endif // defined(BOOST_ASIO_HAS_IOCP)
  692. # endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_RANDOM_ACCESS_HANDLE)
  693. #endif // !defined(BOOST_ASIO_HAS_WINDOWS_RANDOM_ACCESS_HANDLE)
  694. // Windows: object handles.
  695. #if !defined(BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE)
  696. # if !defined(BOOST_ASIO_DISABLE_WINDOWS_OBJECT_HANDLE)
  697. # if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  698. # if !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
  699. # define BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE 1
  700. # endif // !defined(UNDER_CE) && !defined(BOOST_ASIO_WINDOWS_APP)
  701. # endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  702. # endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_OBJECT_HANDLE)
  703. #endif // !defined(BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE)
  704. // Windows: OVERLAPPED wrapper.
  705. #if !defined(BOOST_ASIO_HAS_WINDOWS_OVERLAPPED_PTR)
  706. # if !defined(BOOST_ASIO_DISABLE_WINDOWS_OVERLAPPED_PTR)
  707. # if defined(BOOST_ASIO_HAS_IOCP)
  708. # define BOOST_ASIO_HAS_WINDOWS_OVERLAPPED_PTR 1
  709. # endif // defined(BOOST_ASIO_HAS_IOCP)
  710. # endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_OVERLAPPED_PTR)
  711. #endif // !defined(BOOST_ASIO_HAS_WINDOWS_OVERLAPPED_PTR)
  712. // POSIX: stream-oriented file descriptors.
  713. #if !defined(BOOST_ASIO_HAS_POSIX_STREAM_DESCRIPTOR)
  714. # if !defined(BOOST_ASIO_DISABLE_POSIX_STREAM_DESCRIPTOR)
  715. # if !defined(BOOST_ASIO_WINDOWS) \
  716. && !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
  717. && !defined(__CYGWIN__)
  718. # define BOOST_ASIO_HAS_POSIX_STREAM_DESCRIPTOR 1
  719. # endif // !defined(BOOST_ASIO_WINDOWS)
  720. // && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  721. // && !defined(__CYGWIN__)
  722. # endif // !defined(BOOST_ASIO_DISABLE_POSIX_STREAM_DESCRIPTOR)
  723. #endif // !defined(BOOST_ASIO_HAS_POSIX_STREAM_DESCRIPTOR)
  724. // UNIX domain sockets.
  725. #if !defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
  726. # if !defined(BOOST_ASIO_DISABLE_LOCAL_SOCKETS)
  727. # if !defined(BOOST_ASIO_WINDOWS) \
  728. && !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
  729. && !defined(__CYGWIN__)
  730. # define BOOST_ASIO_HAS_LOCAL_SOCKETS 1
  731. # endif // !defined(BOOST_ASIO_WINDOWS)
  732. // && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  733. // && !defined(__CYGWIN__)
  734. # endif // !defined(BOOST_ASIO_DISABLE_LOCAL_SOCKETS)
  735. #endif // !defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
  736. // Can use sigaction() instead of signal().
  737. #if !defined(BOOST_ASIO_HAS_SIGACTION)
  738. # if !defined(BOOST_ASIO_DISABLE_SIGACTION)
  739. # if !defined(BOOST_ASIO_WINDOWS) \
  740. && !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
  741. && !defined(__CYGWIN__)
  742. # define BOOST_ASIO_HAS_SIGACTION 1
  743. # endif // !defined(BOOST_ASIO_WINDOWS)
  744. // && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
  745. // && !defined(__CYGWIN__)
  746. # endif // !defined(BOOST_ASIO_DISABLE_SIGACTION)
  747. #endif // !defined(BOOST_ASIO_HAS_SIGACTION)
  748. // Can use signal().
  749. #if !defined(BOOST_ASIO_HAS_SIGNAL)
  750. # if !defined(BOOST_ASIO_DISABLE_SIGNAL)
  751. # if !defined(UNDER_CE)
  752. # define BOOST_ASIO_HAS_SIGNAL 1
  753. # endif // !defined(UNDER_CE)
  754. # endif // !defined(BOOST_ASIO_DISABLE_SIGNAL)
  755. #endif // !defined(BOOST_ASIO_HAS_SIGNAL)
  756. // Can use getaddrinfo() and getnameinfo().
  757. #if !defined(BOOST_ASIO_HAS_GETADDRINFO)
  758. # if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  759. # if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0501)
  760. # define BOOST_ASIO_HAS_GETADDRINFO 1
  761. # elif defined(UNDER_CE)
  762. # define BOOST_ASIO_HAS_GETADDRINFO 1
  763. # endif // defined(UNDER_CE)
  764. # elif !(defined(__MACH__) && defined(__APPLE__))
  765. # define BOOST_ASIO_HAS_GETADDRINFO 1
  766. # endif // !(defined(__MACH__) && defined(__APPLE__))
  767. #endif // !defined(BOOST_ASIO_HAS_GETADDRINFO)
  768. // Whether standard iostreams are disabled.
  769. #if !defined(BOOST_ASIO_NO_IOSTREAM)
  770. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_NO_IOSTREAM)
  771. # define BOOST_ASIO_NO_IOSTREAM 1
  772. # endif // !defined(BOOST_NO_IOSTREAM)
  773. #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
  774. // Whether exception handling is disabled.
  775. #if !defined(BOOST_ASIO_NO_EXCEPTIONS)
  776. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_NO_EXCEPTIONS)
  777. # define BOOST_ASIO_NO_EXCEPTIONS 1
  778. # endif // !defined(BOOST_NO_EXCEPTIONS)
  779. #endif // !defined(BOOST_ASIO_NO_EXCEPTIONS)
  780. // Whether the typeid operator is supported.
  781. #if !defined(BOOST_ASIO_NO_TYPEID)
  782. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_NO_TYPEID)
  783. # define BOOST_ASIO_NO_TYPEID 1
  784. # endif // !defined(BOOST_NO_TYPEID)
  785. #endif // !defined(BOOST_ASIO_NO_TYPEID)
  786. // Threads.
  787. #if !defined(BOOST_ASIO_HAS_THREADS)
  788. # if !defined(BOOST_ASIO_DISABLE_THREADS)
  789. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_THREADS)
  790. # define BOOST_ASIO_HAS_THREADS 1
  791. # elif defined(_MSC_VER) && defined(_MT)
  792. # define BOOST_ASIO_HAS_THREADS 1
  793. # elif defined(__BORLANDC__) && defined(__MT__)
  794. # define BOOST_ASIO_HAS_THREADS 1
  795. # elif defined(_POSIX_THREADS)
  796. # define BOOST_ASIO_HAS_THREADS 1
  797. # endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_THREADS)
  798. # endif // !defined(BOOST_ASIO_DISABLE_THREADS)
  799. #endif // !defined(BOOST_ASIO_HAS_THREADS)
  800. // POSIX threads.
  801. #if !defined(BOOST_ASIO_HAS_PTHREADS)
  802. # if defined(BOOST_ASIO_HAS_THREADS)
  803. # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_PTHREADS)
  804. # define BOOST_ASIO_HAS_PTHREADS 1
  805. # elif defined(_POSIX_THREADS)
  806. # define BOOST_ASIO_HAS_PTHREADS 1
  807. # endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG) && defined(BOOST_HAS_PTHREADS)
  808. # endif // defined(BOOST_ASIO_HAS_THREADS)
  809. #endif // !defined(BOOST_ASIO_HAS_PTHREADS)
  810. // Helper to prevent macro expansion.
  811. #define BOOST_ASIO_PREVENT_MACRO_SUBSTITUTION
  812. // Helper to define in-class constants.
  813. #if !defined(BOOST_ASIO_STATIC_CONSTANT)
  814. # if !defined(BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT)
  815. # define BOOST_ASIO_STATIC_CONSTANT(type, assignment) \
  816. BOOST_STATIC_CONSTANT(type, assignment)
  817. # else // !defined(BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT)
  818. # define BOOST_ASIO_STATIC_CONSTANT(type, assignment) \
  819. static const type assignment
  820. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_STATIC_CONSTANT)
  821. #endif // !defined(BOOST_ASIO_STATIC_CONSTANT)
  822. // Boost array library.
  823. #if !defined(BOOST_ASIO_HAS_BOOST_ARRAY)
  824. # if !defined(BOOST_ASIO_DISABLE_BOOST_ARRAY)
  825. # define BOOST_ASIO_HAS_BOOST_ARRAY 1
  826. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_ARRAY)
  827. #endif // !defined(BOOST_ASIO_HAS_BOOST_ARRAY)
  828. // Boost assert macro.
  829. #if !defined(BOOST_ASIO_HAS_BOOST_ASSERT)
  830. # if !defined(BOOST_ASIO_DISABLE_BOOST_ASSERT)
  831. # define BOOST_ASIO_HAS_BOOST_ASSERT 1
  832. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_ASSERT)
  833. #endif // !defined(BOOST_ASIO_HAS_BOOST_ASSERT)
  834. // Boost limits header.
  835. #if !defined(BOOST_ASIO_HAS_BOOST_LIMITS)
  836. # if !defined(BOOST_ASIO_DISABLE_BOOST_LIMITS)
  837. # define BOOST_ASIO_HAS_BOOST_LIMITS 1
  838. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_LIMITS)
  839. #endif // !defined(BOOST_ASIO_HAS_BOOST_LIMITS)
  840. // Boost throw_exception function.
  841. #if !defined(BOOST_ASIO_HAS_BOOST_THROW_EXCEPTION)
  842. # if !defined(BOOST_ASIO_DISABLE_BOOST_THROW_EXCEPTION)
  843. # define BOOST_ASIO_HAS_BOOST_THROW_EXCEPTION 1
  844. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_THROW_EXCEPTION)
  845. #endif // !defined(BOOST_ASIO_HAS_BOOST_THROW_EXCEPTION)
  846. // Boost regex library.
  847. #if !defined(BOOST_ASIO_HAS_BOOST_REGEX)
  848. # if !defined(BOOST_ASIO_DISABLE_BOOST_REGEX)
  849. # define BOOST_ASIO_HAS_BOOST_REGEX 1
  850. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_REGEX)
  851. #endif // !defined(BOOST_ASIO_HAS_BOOST_REGEX)
  852. // Boost bind function.
  853. #if !defined(BOOST_ASIO_HAS_BOOST_BIND)
  854. # if !defined(BOOST_ASIO_DISABLE_BOOST_BIND)
  855. # define BOOST_ASIO_HAS_BOOST_BIND 1
  856. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_BIND)
  857. #endif // !defined(BOOST_ASIO_HAS_BOOST_BIND)
  858. // Boost's BOOST_WORKAROUND macro.
  859. #if !defined(BOOST_ASIO_HAS_BOOST_WORKAROUND)
  860. # if !defined(BOOST_ASIO_DISABLE_BOOST_WORKAROUND)
  861. # define BOOST_ASIO_HAS_BOOST_WORKAROUND 1
  862. # endif // !defined(BOOST_ASIO_DISABLE_BOOST_WORKAROUND)
  863. #endif // !defined(BOOST_ASIO_HAS_BOOST_WORKAROUND)
  864. // Microsoft Visual C++'s secure C runtime library.
  865. #if !defined(BOOST_ASIO_HAS_SECURE_RTL)
  866. # if !defined(BOOST_ASIO_DISABLE_SECURE_RTL)
  867. # if defined(BOOST_ASIO_MSVC) \
  868. && (BOOST_ASIO_MSVC >= 1400) \
  869. && !defined(UNDER_CE)
  870. # define BOOST_ASIO_HAS_SECURE_RTL 1
  871. # endif // defined(BOOST_ASIO_MSVC)
  872. // && (BOOST_ASIO_MSVC >= 1400)
  873. // && !defined(UNDER_CE)
  874. # endif // !defined(BOOST_ASIO_DISABLE_SECURE_RTL)
  875. #endif // !defined(BOOST_ASIO_HAS_SECURE_RTL)
  876. // Handler hooking. Disabled for ancient Borland C++ and gcc compilers.
  877. #if !defined(BOOST_ASIO_HAS_HANDLER_HOOKS)
  878. # if !defined(BOOST_ASIO_DISABLE_HANDLER_HOOKS)
  879. # if defined(__GNUC__)
  880. # if (__GNUC__ >= 3)
  881. # define BOOST_ASIO_HAS_HANDLER_HOOKS 1
  882. # endif // (__GNUC__ >= 3)
  883. # elif !defined(__BORLANDC__)
  884. # define BOOST_ASIO_HAS_HANDLER_HOOKS 1
  885. # endif // !defined(__BORLANDC__)
  886. # endif // !defined(BOOST_ASIO_DISABLE_HANDLER_HOOKS)
  887. #endif // !defined(BOOST_ASIO_HAS_HANDLER_HOOKS)
  888. // Support for the __thread keyword extension.
  889. #if !defined(BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION)
  890. # if defined(__linux__)
  891. # if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
  892. # if ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)
  893. # if !defined(__INTEL_COMPILER) && !defined(__ICL)
  894. # define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
  895. # define BOOST_ASIO_THREAD_KEYWORD __thread
  896. # elif defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1100)
  897. # define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
  898. # endif // defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1100)
  899. # endif // ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)
  900. # endif // defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
  901. # endif // defined(__linux__)
  902. # if defined(BOOST_ASIO_MSVC) && defined(BOOST_ASIO_WINDOWS_RUNTIME)
  903. # if (_MSC_VER >= 1700)
  904. # define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
  905. # define BOOST_ASIO_THREAD_KEYWORD __declspec(thread)
  906. # endif // (_MSC_VER >= 1700)
  907. # endif // defined(BOOST_ASIO_MSVC) && defined(BOOST_ASIO_WINDOWS_RUNTIME)
  908. #endif // !defined(BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION)
  909. #if !defined(BOOST_ASIO_THREAD_KEYWORD)
  910. # define BOOST_ASIO_THREAD_KEYWORD __thread
  911. #endif // !defined(BOOST_ASIO_THREAD_KEYWORD)
  912. // Support for POSIX ssize_t typedef.
  913. #if !defined(BOOST_ASIO_DISABLE_SSIZE_T)
  914. # if defined(__linux__) \
  915. || (defined(__MACH__) && defined(__APPLE__))
  916. # define BOOST_ASIO_HAS_SSIZE_T 1
  917. # endif // defined(__linux__)
  918. // || (defined(__MACH__) && defined(__APPLE__))
  919. #endif // !defined(BOOST_ASIO_DISABLE_SSIZE_T)
  920. #endif // BOOST_ASIO_DETAIL_CONFIG_HPP