amigaos.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. Copyright Redshift Software, Inc. 2008-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_PREDEF_OS_AMIGAOS_H
  8. #define BOOST_PREDEF_OS_AMIGAOS_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /*`
  12. [heading `BOOST_OS_AMIGAOS`]
  13. [@http://en.wikipedia.org/wiki/AmigaOS AmigaOS] operating system.
  14. [table
  15. [[__predef_symbol__] [__predef_version__]]
  16. [[`AMIGA`] [__predef_detection__]]
  17. [[`__amigaos__`] [__predef_detection__]]
  18. ]
  19. */
  20. #define BOOST_OS_AMIGAOS BOOST_VERSION_NUMBER_NOT_AVAILABLE
  21. #if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
  22. defined(AMIGA) || defined(__amigaos__) \
  23. )
  24. # undef BOOST_OS_AMIGAOS
  25. # define BOOST_OS_AMIGAOS BOOST_VERSION_NUMBER_AVAILABLE
  26. #endif
  27. #if BOOST_OS_AMIGAOS
  28. # define BOOST_OS_AMIGAOS_AVAILABLE
  29. # include <boost/predef/detail/os_detected.h>
  30. #endif
  31. #define BOOST_OS_AMIGAOS_NAME "AmigaOS"
  32. #include <boost/predef/detail/test.h>
  33. BOOST_PREDEF_DECLARE_TEST(BOOST_OS_AMIGAOS,BOOST_OS_AMIGAOS_NAME)
  34. #endif