Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/config/compiler/kai.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 // (C) Copyright John Maddock 2001. |
Chris@16 | 2 // (C) Copyright David Abrahams 2002. |
Chris@16 | 3 // (C) Copyright Aleksey Gurtovoy 2002. |
Chris@16 | 4 // Use, modification and distribution are subject to the |
Chris@16 | 5 // Boost Software License, Version 1.0. (See accompanying file |
Chris@16 | 6 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 7 |
Chris@16 | 8 // See http://www.boost.org for most recent version. |
Chris@16 | 9 |
Chris@16 | 10 // Kai C++ compiler setup: |
Chris@16 | 11 |
Chris@16 | 12 #include "boost/config/compiler/common_edg.hpp" |
Chris@16 | 13 |
Chris@16 | 14 # if (__KCC_VERSION <= 4001) || !defined(BOOST_STRICT_CONFIG) |
Chris@16 | 15 // at least on Sun, the contents of <cwchar> is not in namespace std |
Chris@16 | 16 # define BOOST_NO_STDC_NAMESPACE |
Chris@16 | 17 # endif |
Chris@16 | 18 |
Chris@16 | 19 // see also common_edg.hpp which needs a special check for __KCC |
Chris@16 | 20 # if !defined(_EXCEPTIONS) && !defined(BOOST_NO_EXCEPTIONS) |
Chris@16 | 21 # define BOOST_NO_EXCEPTIONS |
Chris@16 | 22 # endif |
Chris@16 | 23 |
Chris@16 | 24 // |
Chris@16 | 25 // last known and checked version is 4001: |
Chris@16 | 26 #if (__KCC_VERSION > 4001) |
Chris@16 | 27 # if defined(BOOST_ASSERT_CONFIG) |
Chris@16 | 28 # error "Unknown compiler version - please run the configure tests and report the results" |
Chris@16 | 29 # endif |
Chris@16 | 30 #endif |
Chris@16 | 31 |
Chris@16 | 32 |
Chris@16 | 33 |