Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:07

0001 //  (C) Copyright John Maddock 2001 - 2003. 
0002 //  (C) Copyright Jens Maurer 2003. 
0003 //  Use, modification and distribution are subject to the 
0004 //  Boost Software License, Version 1.0. (See accompanying file 
0005 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 //  See http://www.boost.org for most recent version.
0008 
0009 //  sun specific config options:
0010 
0011 #define BOOST_PLATFORM "Sun Solaris"
0012 
0013 #define BOOST_HAS_GETTIMEOFDAY
0014 
0015 // boilerplate code:
0016 #define BOOST_HAS_UNISTD_H
0017 #include <boost/config/detail/posix_features.hpp>
0018 
0019 //
0020 // pthreads don't actually work with gcc unless _PTHREADS is defined:
0021 //
0022 #if defined(__GNUC__) && defined(_POSIX_THREADS) && !defined(_PTHREADS)
0023 # undef BOOST_HAS_PTHREADS
0024 #endif
0025 
0026 #define BOOST_HAS_STDINT_H 
0027 #define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE 
0028 #define BOOST_HAS_LOG1P 
0029 #define BOOST_HAS_EXPM1
0030 
0031