sl@0: // Boost config.hpp configuration header file ------------------------------// sl@0: sl@0: // (C) Copyright John Maddock 2002. 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/libs/config for most recent version. sl@0: sl@0: // Boost config.hpp policy and rationale documentation has been moved to sl@0: // http://www.boost.org/libs/config sl@0: // sl@0: // CAUTION: This file is intended to be completely stable - sl@0: // DO NOT MODIFY THIS FILE! sl@0: // sl@0: sl@0: #ifndef BOOST_CONFIG_HPP sl@0: #define BOOST_CONFIG_HPP sl@0: sl@0: // if we don't have a user config, then use the default location: sl@0: #if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG) sl@0: # define BOOST_USER_CONFIG sl@0: #endif sl@0: // include it first: sl@0: #ifdef BOOST_USER_CONFIG sl@0: # include BOOST_USER_CONFIG sl@0: #endif sl@0: // if we don't have a compiler config set, try and find one: sl@0: #if !defined(BOOST_COMPILER_CONFIG) && !defined(BOOST_NO_COMPILER_CONFIG) && !defined(BOOST_NO_CONFIG) sl@0: # include sl@0: #endif sl@0: // if we have a compiler config, include it now: sl@0: #ifdef BOOST_COMPILER_CONFIG sl@0: # include BOOST_COMPILER_CONFIG sl@0: #endif sl@0: sl@0: // if we don't have a std library config set, try and find one: sl@0: #if !defined(BOOST_STDLIB_CONFIG) && !defined(BOOST_NO_STDLIB_CONFIG) && !defined(BOOST_NO_CONFIG) sl@0: # include sl@0: #endif sl@0: // if we have a std library config, include it now: sl@0: #ifdef BOOST_STDLIB_CONFIG sl@0: # include BOOST_STDLIB_CONFIG sl@0: #endif sl@0: sl@0: // if we don't have a platform config set, try and find one: sl@0: #if !defined(BOOST_PLATFORM_CONFIG) && !defined(BOOST_NO_PLATFORM_CONFIG) && !defined(BOOST_NO_CONFIG) sl@0: # include sl@0: #endif sl@0: // if we have a platform config, include it now: sl@0: #ifdef BOOST_PLATFORM_CONFIG sl@0: # include BOOST_PLATFORM_CONFIG sl@0: #endif sl@0: sl@0: // get config suffix code: sl@0: #include sl@0: sl@0: #endif // BOOST_CONFIG_HPP sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: