vacpp.hpp

Go to the documentation of this file.
00001 //  (C) Copyright John Maddock 2001 - 2003. 
00002 //  (C) Copyright Toon Knapen 2001 - 2003. 
00003 //  (C) Copyright Lie-Quan Lee 2001. 
00004 //  (C) Copyright Markus Schöpflin 2002 - 2003. 
00005 //  (C) Copyright Beman Dawes 2002 - 2003. 
00006 //  Use, modification and distribution are subject to the 
00007 //  Boost Software License, Version 1.0. (See accompanying file 
00008 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
00009 
00010 //  See http://www.boost.org for most recent version.
00011 
00012 //  Visual Age (IBM) C++ compiler setup:
00013 
00014 #if __IBMCPP__ <= 501
00015 #  define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
00016 #  define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
00017 #endif
00018 
00019 #if (__IBMCPP__ <= 502) 
00020 // Actually the compiler supports inclass member initialization but it
00021 // requires a definition for the class member and it doesn't recognize
00022 // it as an integral constant expression when used as a template argument.
00023 #  define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
00024 #  define BOOST_NO_INTEGRAL_INT64_T
00025 #  define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
00026 #endif
00027 
00028 #if (__IBMCPP__ <= 600) || !defined(BOOST_STRICT_CONFIG)
00029 #  define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
00030 #  define BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES 1
00031 #endif
00032 
00033 //
00034 // On AIX thread support seems to be indicated by _THREAD_SAFE:
00035 //
00036 #ifdef _THREAD_SAFE
00037 #  define BOOST_HAS_THREADS
00038 #endif
00039 
00040 #define BOOST_COMPILER "IBM Visual Age version " BOOST_STRINGIZE(__IBMCPP__)
00041 
00042 //
00043 // versions check:
00044 // we don't support Visual age prior to version 5:
00045 #if __IBMCPP__ < 500
00046 #error "Compiler not supported or configured - please reconfigure"
00047 #endif
00048 //
00049 // last known and checked version is 600:
00050 #if (__IBMCPP__ > 600)
00051 #  if defined(BOOST_ASSERT_CONFIG)
00052 #     error "Unknown compiler version - please run the configure tests and report the results"
00053 #  endif
00054 #endif
00055 
00056 
00057 
00058 

Generated on Wed Jan 21 15:32:09 2009 for SystemC by  doxygen 1.5.5