blob: e9ce41e2e7860af2b7c97073689c1d6eb6d23577 [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// See http://www.boost.org for most recent version.
8
9// sun specific config options:
10
Jeff Thompson3d613fd2013-10-15 15:39:04 -070011#define NDNBOOST_PLATFORM "Sun Solaris"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070012
Jeff Thompson3d613fd2013-10-15 15:39:04 -070013#define NDNBOOST_HAS_GETTIMEOFDAY
Jeff Thompsonf7d49942013-08-01 16:47:40 -070014
15// boilerplate code:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070016#define NDNBOOST_HAS_UNISTD_H
Jeff Thompson2277ce52013-08-01 17:34:11 -070017#include <ndnboost/config/posix_features.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070018
19//
20// pthreads don't actually work with gcc unless _PTHREADS is defined:
21//
22#if defined(__GNUC__) && defined(_POSIX_THREADS) && !defined(_PTHREADS)
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023# undef NDNBOOST_HAS_PTHREADS
Jeff Thompsonf7d49942013-08-01 16:47:40 -070024#endif
25
26
27
28