irix.hpp 796 B

12345678910111213141516171819202122232425262728293031
  1. // (C) Copyright John Maddock 2001 - 2003.
  2. // (C) Copyright Jens Maurer 2003.
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. // See http://www.boost.org for most recent version.
  7. // SGI Irix specific config options:
  8. #define BOOST_PLATFORM "SGI Irix"
  9. #define BOOST_NO_SWPRINTF
  10. //
  11. // these are not auto detected by POSIX feature tests:
  12. //
  13. #define BOOST_HAS_GETTIMEOFDAY
  14. #define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
  15. #ifdef __GNUC__
  16. // GNU C on IRIX does not support threads (checked up to gcc 3.3)
  17. # define BOOST_DISABLE_THREADS
  18. #endif
  19. // boilerplate code:
  20. #define BOOST_HAS_UNISTD_H
  21. #include <boost/config/detail/posix_features.hpp>