]> git.donarmstrong.com Git - rsem.git/blob - boost/config/platform/irix.hpp
Updated boost to v1.55.0
[rsem.git] / boost / config / platform / irix.hpp
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
7
8 //  See http://www.boost.org for most recent version.
9
10 //  SGI Irix specific config options:
11
12 #define BOOST_PLATFORM "SGI Irix"
13
14 #define BOOST_NO_SWPRINTF 
15 //
16 // these are not auto detected by POSIX feature tests:
17 //
18 #define BOOST_HAS_GETTIMEOFDAY
19 #define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
20
21 #ifdef __GNUC__
22    // GNU C on IRIX does not support threads (checked up to gcc 3.3)
23 #  define BOOST_DISABLE_THREADS
24 #endif
25
26 // boilerplate code:
27 #define BOOST_HAS_UNISTD_H
28 #include <boost/config/posix_features.hpp>
29
30
31