Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/config/platform/solaris.hpp @ 16:2665513ce2d3
Add boost headers
author | Chris Cannam |
---|---|
date | Tue, 05 Aug 2014 11:11:38 +0100 |
parents | |
children | c530137014c0 |
comparison
equal
deleted
inserted
replaced
15:663ca0da4350 | 16:2665513ce2d3 |
---|---|
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 // See http://www.boost.org for most recent version. | |
8 | |
9 // sun specific config options: | |
10 | |
11 #define BOOST_PLATFORM "Sun Solaris" | |
12 | |
13 #define BOOST_HAS_GETTIMEOFDAY | |
14 | |
15 // boilerplate code: | |
16 #define BOOST_HAS_UNISTD_H | |
17 #include <boost/config/posix_features.hpp> | |
18 | |
19 // | |
20 // pthreads don't actually work with gcc unless _PTHREADS is defined: | |
21 // | |
22 #if defined(__GNUC__) && defined(_POSIX_THREADS) && !defined(_PTHREADS) | |
23 # undef BOOST_HAS_PTHREADS | |
24 #endif | |
25 | |
26 | |
27 | |
28 |