linux.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Copyright Rene Rivera 2008-2015
  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_PREDEF_OS_LINUX_H
  8. #define BOOST_PREDEF_OS_LINUX_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /* tag::reference[]
  12. = `BOOST_OS_LINUX`
  13. http://en.wikipedia.org/wiki/Linux[Linux] operating system.
  14. [options="header"]
  15. |===
  16. | {predef_symbol} | {predef_version}
  17. | `linux` | {predef_detection}
  18. | `+__linux+` | {predef_detection}
  19. | `+__linux__+` | {predef_detection}
  20. | `+__gnu_linux__+` | {predef_detection}
  21. |===
  22. */ // end::reference[]
  23. #define BOOST_OS_LINUX BOOST_VERSION_NUMBER_NOT_AVAILABLE
  24. #if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
  25. defined(linux) || defined(__linux) || \
  26. defined(__linux__) || defined(__gnu_linux__) \
  27. )
  28. # undef BOOST_OS_LINUX
  29. # define BOOST_OS_LINUX BOOST_VERSION_NUMBER_AVAILABLE
  30. #endif
  31. #if BOOST_OS_LINUX
  32. # define BOOST_OS_LINUX_AVAILABLE
  33. # include <boost/predef/detail/os_detected.h>
  34. #endif
  35. #define BOOST_OS_LINUX_NAME "Linux"
  36. #endif
  37. #include <boost/predef/detail/test.h>
  38. BOOST_PREDEF_DECLARE_TEST(BOOST_OS_LINUX,BOOST_OS_LINUX_NAME)