1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/config.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,69 @@
1.4 +// Boost config.hpp configuration header file ------------------------------//
1.5 +
1.6 +// (C) Copyright John Maddock 2002.
1.7 +// Use, modification and distribution are subject to the
1.8 +// Boost Software License, Version 1.0. (See accompanying file
1.9 +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
1.10 +
1.11 +// See http://www.boost.org/libs/config for most recent version.
1.12 +
1.13 +// Boost config.hpp policy and rationale documentation has been moved to
1.14 +// http://www.boost.org/libs/config
1.15 +//
1.16 +// CAUTION: This file is intended to be completely stable -
1.17 +// DO NOT MODIFY THIS FILE!
1.18 +//
1.19 +
1.20 +#ifndef BOOST_CONFIG_HPP
1.21 +#define BOOST_CONFIG_HPP
1.22 +
1.23 +// if we don't have a user config, then use the default location:
1.24 +#if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG)
1.25 +# define BOOST_USER_CONFIG <boost/config/user.hpp>
1.26 +#endif
1.27 +// include it first:
1.28 +#ifdef BOOST_USER_CONFIG
1.29 +# include BOOST_USER_CONFIG
1.30 +#endif
1.31 +// if we don't have a compiler config set, try and find one:
1.32 +#if !defined(BOOST_COMPILER_CONFIG) && !defined(BOOST_NO_COMPILER_CONFIG) && !defined(BOOST_NO_CONFIG)
1.33 +# include <boost/config/select_compiler_config.hpp>
1.34 +#endif
1.35 +// if we have a compiler config, include it now:
1.36 +#ifdef BOOST_COMPILER_CONFIG
1.37 +# include BOOST_COMPILER_CONFIG
1.38 +#endif
1.39 +
1.40 +// if we don't have a std library config set, try and find one:
1.41 +#if !defined(BOOST_STDLIB_CONFIG) && !defined(BOOST_NO_STDLIB_CONFIG) && !defined(BOOST_NO_CONFIG)
1.42 +# include <boost/config/select_stdlib_config.hpp>
1.43 +#endif
1.44 +// if we have a std library config, include it now:
1.45 +#ifdef BOOST_STDLIB_CONFIG
1.46 +# include BOOST_STDLIB_CONFIG
1.47 +#endif
1.48 +
1.49 +// if we don't have a platform config set, try and find one:
1.50 +#if !defined(BOOST_PLATFORM_CONFIG) && !defined(BOOST_NO_PLATFORM_CONFIG) && !defined(BOOST_NO_CONFIG)
1.51 +# include <boost/config/select_platform_config.hpp>
1.52 +#endif
1.53 +// if we have a platform config, include it now:
1.54 +#ifdef BOOST_PLATFORM_CONFIG
1.55 +# include BOOST_PLATFORM_CONFIG
1.56 +#endif
1.57 +
1.58 +// get config suffix code:
1.59 +#include <boost/config/suffix.hpp>
1.60 +
1.61 +#endif // BOOST_CONFIG_HPP
1.62 +
1.63 +
1.64 +
1.65 +
1.66 +
1.67 +
1.68 +
1.69 +
1.70 +
1.71 +
1.72 +