2001-09-18 11:13:39 +00:00
|
|
|
// (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and
|
|
|
|
|
// distribute this software is granted provided this copyright notice appears
|
|
|
|
|
// in all copies. This software is provided "as is" without express or implied
|
|
|
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
|
|
|
|
|
|
// See http://www.boost.org for most recent version.
|
|
|
|
|
|
|
|
|
|
// HP aCC C++ compiler setup:
|
|
|
|
|
|
2001-11-22 21:45:17 +00:00
|
|
|
#if (__HP_aCC <= 33100)
|
2001-10-29 19:45:07 +00:00
|
|
|
# define BOOST_NO_INTEGRAL_INT64_T
|
2001-09-18 11:13:39 +00:00
|
|
|
# define BOOST_NO_OPERATORS_IN_NAMESPACE
|
|
|
|
|
# if !defined(_NAMESPACE_STD)
|
|
|
|
|
# define BOOST_NO_STD_LOCALE
|
|
|
|
|
# define BOOST_NO_STRINGSTREAM
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-01-21 14:04:09 +00:00
|
|
|
#if (__HP_aCC <= 33300)
|
2001-11-22 22:07:47 +00:00
|
|
|
// member templates are sufficiently broken that we disable them for now
|
|
|
|
|
# define BOOST_NO_MEMBER_TEMPLATES
|
|
|
|
|
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
2001-11-22 21:45:17 +00:00
|
|
|
#endif
|
2001-09-18 11:13:39 +00:00
|
|
|
|
2002-12-03 19:04:22 +00:00
|
|
|
#if (__HP_aCC <= 33900)
|
2002-12-09 14:57:59 +00:00
|
|
|
# define BOOST_NO_UNREACHABLE_RETURN_DETECTION
|
2003-01-21 14:04:09 +00:00
|
|
|
# define BOOST_MSVC6_MEMBER_TEMPLATES
|
|
|
|
|
# define BOOST_HAS_UNISTD_H
|
|
|
|
|
# define BOOST_HAS_SCHED_YIELD
|
|
|
|
|
# define BOOST_HAS_PTHREADS
|
|
|
|
|
# define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
|
|
|
|
|
# define BOOST_HAS_PARTIAL_STD_ALLOCATOR
|
|
|
|
|
# define BOOST_HAS_NL_TYPES_H
|
|
|
|
|
# define BOOST_HAS_NANOSLEEP
|
|
|
|
|
# define BOOST_HAS_LONG_LONG
|
|
|
|
|
# define BOOST_HAS_GETTIMEOFDAY
|
|
|
|
|
# define BOOST_HAS_DIRENT_H
|
|
|
|
|
# define BOOST_HAS_CLOCK_GETTIME
|
|
|
|
|
# define BOOST_NO_TEMPLATE_TEMPLATES
|
|
|
|
|
# define BOOST_NO_SWPRINTF
|
|
|
|
|
# define BOOST_NO_STD_ALLOCATOR
|
|
|
|
|
# define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
|
2002-12-03 19:04:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
2001-09-18 11:13:39 +00:00
|
|
|
#define BOOST_COMPILER "HP aCC version " BOOST_STRINGIZE(__HP_aCC)
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// versions check:
|
|
|
|
|
// we don't support HP aCC prior to version 0:
|
2001-11-22 21:45:17 +00:00
|
|
|
#if __HP_aCC < 33000
|
2001-09-18 11:13:39 +00:00
|
|
|
# error "Compiler not supported or configured - please reconfigure"
|
|
|
|
|
#endif
|
|
|
|
|
//
|
|
|
|
|
// last known and checked version is 0:
|
2002-12-03 19:04:22 +00:00
|
|
|
#if (__HP_aCC > 33900)
|
2001-09-18 11:13:39 +00:00
|
|
|
# if defined(BOOST_ASSERT_CONFIG)
|
|
|
|
|
# error "Unknown compiler version - please run the configure tests and report the results"
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|