removed BOOST_HAS_THREADS as threads on HPUX11i are not compliant enough

taking into account aCC version 53800


[SVN r18277]
This commit is contained in:
Toon Knapen
2003-04-18 10:10:45 +00:00
parent 648b777160
commit 7fa91feb00
2 changed files with 5 additions and 8 deletions

View File

@ -37,6 +37,10 @@
# define BOOST_HAS_PARTIAL_STD_ALLOCATOR
#endif
#if (__HP_aCC <= 53800 )
# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
#endif
#define BOOST_COMPILER "HP aCC version " BOOST_STRINGIZE(__HP_aCC)
//
@ -47,7 +51,7 @@
#endif
//
// last known and checked version is 0:
#if (__HP_aCC > 33900)
#if (__HP_aCC > 53800)
# if defined(BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results"
# endif

View File

@ -22,13 +22,6 @@
#define BOOST_HAS_UNISTD_H
#include <boost/config/posix_features.hpp>
// HPUX has an incomplete pthreads implementation, so it doesn't
// define _POSIX_THREADS, but it might be enough to implement
// Boost.Threads.
#if !defined(BOOST_HAS_PTHREADS) && defined(_POSIX_THREAD_ATTR_STACKADDR)
# define BOOST_HAS_PTHREADS
#endif
// the following are always available:
#ifndef BOOST_HAS_GETTIMEOFDAY
# define BOOST_HAS_GETTIMEOFDAY