~tsarev/boostdc/cmake

« back to all changes in this revision

Viewing changes to boost/boost/config/compiler/kai.hpp

  • Committer: bigmuscle
  • Date: 2010-05-08 08:47:15 UTC
  • Revision ID: svn-v4:5fb55d53-692c-0410-a46a-e90ab66e00ee:trunk:497
removed old boost version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  (C) Copyright John Maddock 2001. 
2
 
//  (C) Copyright David Abrahams 2002. 
3
 
//  (C) Copyright Aleksey Gurtovoy 2002. 
4
 
//  Use, modification and distribution are subject to the 
5
 
//  Boost Software License, Version 1.0. (See accompanying file 
6
 
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
 
 
8
 
//  See http://www.boost.org for most recent version.
9
 
 
10
 
//  Kai C++ compiler setup:
11
 
 
12
 
#include "boost/config/compiler/common_edg.hpp"
13
 
 
14
 
#   if (__KCC_VERSION <= 4001) || !defined(BOOST_STRICT_CONFIG)
15
 
      // at least on Sun, the contents of <cwchar> is not in namespace std
16
 
#     define BOOST_NO_STDC_NAMESPACE
17
 
#   endif
18
 
 
19
 
// see also common_edg.hpp which needs a special check for __KCC
20
 
# if !defined(_EXCEPTIONS)
21
 
#     define BOOST_NO_EXCEPTIONS
22
 
# endif
23
 
 
24
 
//
25
 
// last known and checked version is 4001:
26
 
#if (__KCC_VERSION > 4001)
27
 
#  if defined(BOOST_ASSERT_CONFIG)
28
 
#     error "Unknown compiler version - please run the configure tests and report the results"
29
 
#  endif
30
 
#endif
31
 
 
32
 
 
33