blob: 8064127b7375a9bbc6541c1ab79e471dfb7418a3 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001// (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
Jeff Thompson2277ce52013-08-01 17:34:11 -070028#include <ndnboost/config/posix_features.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070029
30
31