blob: 852d821d8cfa1f2b5438c51204e743f966d18382 [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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070012#define NDNBOOST_PLATFORM "SGI Irix"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070013
Jeff Thompson3d613fd2013-10-15 15:39:04 -070014#define NDNBOOST_NO_SWPRINTF
Jeff Thompsonf7d49942013-08-01 16:47:40 -070015//
16// these are not auto detected by POSIX feature tests:
17//
Jeff Thompson3d613fd2013-10-15 15:39:04 -070018#define NDNBOOST_HAS_GETTIMEOFDAY
19#define NDNBOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
Jeff Thompsonf7d49942013-08-01 16:47:40 -070020
21#ifdef __GNUC__
22 // GNU C on IRIX does not support threads (checked up to gcc 3.3)
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023# define NDNBOOST_DISABLE_THREADS
Jeff Thompsonf7d49942013-08-01 16:47:40 -070024#endif
25
26// boilerplate code:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027#define NDNBOOST_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