forked from boostorg/config
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:
@ -37,6 +37,10 @@
|
|||||||
# define BOOST_HAS_PARTIAL_STD_ALLOCATOR
|
# define BOOST_HAS_PARTIAL_STD_ALLOCATOR
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (__HP_aCC <= 53800 )
|
||||||
|
# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
|
||||||
|
#endif
|
||||||
|
|
||||||
#define BOOST_COMPILER "HP aCC version " BOOST_STRINGIZE(__HP_aCC)
|
#define BOOST_COMPILER "HP aCC version " BOOST_STRINGIZE(__HP_aCC)
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -47,7 +51,7 @@
|
|||||||
#endif
|
#endif
|
||||||
//
|
//
|
||||||
// last known and checked version is 0:
|
// last known and checked version is 0:
|
||||||
#if (__HP_aCC > 33900)
|
#if (__HP_aCC > 53800)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
|
@ -22,13 +22,6 @@
|
|||||||
#define BOOST_HAS_UNISTD_H
|
#define BOOST_HAS_UNISTD_H
|
||||||
#include <boost/config/posix_features.hpp>
|
#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:
|
// the following are always available:
|
||||||
#ifndef BOOST_HAS_GETTIMEOFDAY
|
#ifndef BOOST_HAS_GETTIMEOFDAY
|
||||||
# define BOOST_HAS_GETTIMEOFDAY
|
# define BOOST_HAS_GETTIMEOFDAY
|
||||||
|
Reference in New Issue
Block a user