1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/config/compiler/vacpp.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,57 @@
1.4 +// (C) Copyright John Maddock 2001 - 2003.
1.5 +// (C) Copyright Toon Knapen 2001 - 2003.
1.6 +// (C) Copyright Lie-Quan Lee 2001.
1.7 +// (C) Copyright Markus Schöpflin 2002 - 2003.
1.8 +// (C) Copyright Beman Dawes 2002 - 2003.
1.9 +// Use, modification and distribution are subject to the
1.10 +// Boost Software License, Version 1.0. (See accompanying file
1.11 +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
1.12 +
1.13 +// See http://www.boost.org for most recent version.
1.14 +
1.15 +// Visual Age (IBM) C++ compiler setup:
1.16 +
1.17 +#if __IBMCPP__ <= 501
1.18 +# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
1.19 +# define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
1.20 +#endif
1.21 +
1.22 +#if (__IBMCPP__ <= 502)
1.23 +// Actually the compiler supports inclass member initialization but it
1.24 +// requires a definition for the class member and it doesn't recognize
1.25 +// it as an integral constant expression when used as a template argument.
1.26 +# define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
1.27 +# define BOOST_NO_INTEGRAL_INT64_T
1.28 +# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
1.29 +#endif
1.30 +
1.31 +#if (__IBMCPP__ <= 600) || !defined(BOOST_STRICT_CONFIG)
1.32 +# define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
1.33 +#endif
1.34 +
1.35 +//
1.36 +// On AIX thread support seems to be indicated by _THREAD_SAFE:
1.37 +//
1.38 +#ifdef _THREAD_SAFE
1.39 +# define BOOST_HAS_THREADS
1.40 +#endif
1.41 +
1.42 +#define BOOST_COMPILER "IBM Visual Age version " BOOST_STRINGIZE(__IBMCPP__)
1.43 +
1.44 +//
1.45 +// versions check:
1.46 +// we don't support Visual age prior to version 5:
1.47 +#if __IBMCPP__ < 500
1.48 +#error "Compiler not supported or configured - please reconfigure"
1.49 +#endif
1.50 +//
1.51 +// last known and checked version is 600:
1.52 +#if (__IBMCPP__ > 600)
1.53 +# if defined(BOOST_ASSERT_CONFIG)
1.54 +# error "Unknown compiler version - please run the configure tests and report the results"
1.55 +# endif
1.56 +#endif
1.57 +
1.58 +
1.59 +
1.60 +