Removed references to non-supported compilers.

Signed-off-by: Deniz Bahadir <dbahadir@benocs.com>
This commit is contained in:
Deniz Bahadir
2015-04-21 15:40:24 +02:00
parent 2531010a0a
commit d5dcd7abb1
6 changed files with 3 additions and 65 deletions

View File

@@ -1,26 +0,0 @@
// Copyright Aleksey Gurtovoy 2003-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id$
// $Date$
// $Revision$
#define BOOST_NO_CONFIG
#define BOOST_MSVC 1200
#define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
#define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
#define BOOST_NO_TEMPLATE_TEMPLATES
#define BOOST_NO_CV_VOID_SPECIALIZATIONS
#define BOOST_NO_INTRINSIC_WCHAR_T
#define BOOST_NO_STD_ALLOCATOR
#define BOOST_MPL_CFG_NO_BIND_TEMPLATE
#define BOOST_MPL_CFG_NO_APPLY_TEMPLATE
#define BOOST_MPL_CFG_MSVC_60_ETI_BUG
#define BOOST_MPL_CFG_MSVC_ETI_BUG
#define BOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC

View File

@@ -1,21 +0,0 @@
// Copyright Aleksey Gurtovoy 2003-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id$
// $Date$
// $Revision$
#define BOOST_NO_CONFIG
#define BOOST_MSVC 1300
#define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
#define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
#define BOOST_MPL_CFG_NO_BIND_TEMPLATE
#define BOOST_MPL_CFG_NO_APPLY_TEMPLATE
#define BOOST_MPL_CFG_MSVC_ETI_BUG
#define BOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC

View File

@@ -1,15 +0,0 @@
// Copyright Aleksey Gurtovoy 2003-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id$
// $Date$
// $Revision$
#define BOOST_NO_CONFIG
#define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION

View File

@@ -82,7 +82,7 @@ def main( all_modes, src_dir, dst_dir ):
if __name__ == '__main__': if __name__ == '__main__':
main( main(
["bcc", "bcc551", "gcc", "msvc60", "msvc70", "mwcw", "dmc", "no_ctps", "no_ttp", "plain"] ["bcc", "bcc551", "gcc", "mwcw", "dmc", "no_ttp", "plain"]
, "src" , "src"
, os.path.join( "boost", "mpl", "aux_", "preprocessed" ) , os.path.join( "boost", "mpl", "aux_", "preprocessed" )
) )

View File

@@ -15,7 +15,7 @@ import preprocess
import os.path import os.path
preprocess.main( preprocess.main(
[ "plain", "typeof_based", "no_ctps" ] [ "plain", "typeof_based" ]
, "map" , "map"
, os.path.join( "boost", "mpl", "map", "aux_", "preprocessed" ) , os.path.join( "boost", "mpl", "map", "aux_", "preprocessed" )
) )

View File

@@ -15,7 +15,7 @@ import preprocess
import os.path import os.path
preprocess.main( preprocess.main(
[ "no_ctps", "plain", "typeof_based" ] [ "plain", "typeof_based" ]
, "vector" , "vector"
, os.path.join( "boost", "mpl", "vector", "aux_", "preprocessed" ) , os.path.join( "boost", "mpl", "vector", "aux_", "preprocessed" )
) )