00001 // (C) Copyright John Maddock 2001 - 2003. 00002 // (C) Copyright Jens Maurer 2003. 00003 // Use, modification and distribution are subject to the 00004 // Boost Software License, Version 1.0. (See accompanying file 00005 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00006 00007 // See http://www.boost.org for most recent version. 00008 00009 // sun specific config options: 00010 00011 #define BOOST_PLATFORM "Sun Solaris" 00012 00013 #define BOOST_HAS_GETTIMEOFDAY 00014 00015 // boilerplate code: 00016 #define BOOST_HAS_UNISTD_H 00017 #include <boost/config/posix_features.hpp> 00018 00019 // 00020 // pthreads don't actually work with gcc unless _PTHREADS is defined: 00021 // 00022 #if defined(__GNUC__) && defined(_POSIX_THREADS) && !defined(_PTHREADS) 00023 # undef BOOST_HAS_PTHREADS 00024 #endif 00025 00026 00027 00028