ekopath.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_COMPILER_EKOPATH_H
  8. #define BOOST_PREDEF_COMPILER_EKOPATH_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /*`
  12. [heading `BOOST_COMP_PATH`]
  13. [@http://en.wikipedia.org/wiki/PathScale EKOpath] compiler.
  14. Version number available as major, minor, and patch.
  15. [table
  16. [[__predef_symbol__] [__predef_version__]]
  17. [[`__PATHCC__`] [__predef_detection__]]
  18. [[`__PATHCC__`, `__PATHCC_MINOR__`, `__PATHCC_PATCHLEVEL__`] [V.R.P]]
  19. ]
  20. */
  21. #define BOOST_COMP_PATH BOOST_VERSION_NUMBER_NOT_AVAILABLE
  22. #if defined(__PATHCC__)
  23. # undef BOOST_COMP_PATH
  24. # define BOOST_COMP_PATH \
  25. BOOST_VERSION_NUMBER(__PATHCC__,__PATHCC_MINOR__,__PATHCC_PATCHLEVEL__)
  26. #endif
  27. #if BOOST_COMP_PATH
  28. # define BOOST_COMP_PATH_AVAILABLE
  29. #endif
  30. #define BOOST_COMP_PATH_NAME "EKOpath"
  31. #include <boost/predef/detail/test.h>
  32. BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_PATH,BOOST_COMP_PATH_NAME)
  33. #endif