sl@0: // (C) Copyright John Maddock 2001 - 2003. sl@0: // (C) Copyright Toon Knapen 2001 - 2003. sl@0: // (C) Copyright Lie-Quan Lee 2001. sl@0: // (C) Copyright Markus Schöpflin 2002 - 2003. sl@0: // (C) Copyright Beman Dawes 2002 - 2003. sl@0: // Use, modification and distribution are subject to the sl@0: // Boost Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org for most recent version. sl@0: sl@0: // Visual Age (IBM) C++ compiler setup: sl@0: sl@0: #if __IBMCPP__ <= 501 sl@0: # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS sl@0: # define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS sl@0: #endif sl@0: sl@0: #if (__IBMCPP__ <= 502) sl@0: // Actually the compiler supports inclass member initialization but it sl@0: // requires a definition for the class member and it doesn't recognize sl@0: // it as an integral constant expression when used as a template argument. sl@0: # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION sl@0: # define BOOST_NO_INTEGRAL_INT64_T sl@0: # define BOOST_NO_MEMBER_TEMPLATE_KEYWORD sl@0: #endif sl@0: sl@0: #if (__IBMCPP__ <= 600) || !defined(BOOST_STRICT_CONFIG) sl@0: # define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS sl@0: #endif sl@0: sl@0: // sl@0: // On AIX thread support seems to be indicated by _THREAD_SAFE: sl@0: // sl@0: #ifdef _THREAD_SAFE sl@0: # define BOOST_HAS_THREADS sl@0: #endif sl@0: sl@0: #define BOOST_COMPILER "IBM Visual Age version " BOOST_STRINGIZE(__IBMCPP__) sl@0: sl@0: // sl@0: // versions check: sl@0: // we don't support Visual age prior to version 5: sl@0: #if __IBMCPP__ < 500 sl@0: #error "Compiler not supported or configured - please reconfigure" sl@0: #endif sl@0: // sl@0: // last known and checked version is 600: sl@0: #if (__IBMCPP__ > 600) sl@0: # if defined(BOOST_ASSERT_CONFIG) sl@0: # error "Unknown compiler version - please run the configure tests and report the results" sl@0: # endif sl@0: #endif sl@0: sl@0: sl@0: sl@0: