2000-07-07 16:04:40 +00:00
|
|
|
// Boost config.hpp configuration header file ------------------------------//
|
|
|
|
|
2013-09-01 19:07:06 +00:00
|
|
|
// (C) Copyright John Maddock 2002.
|
2003-10-04 11:29:20 +00:00
|
|
|
// Use, modification and distribution are subject to 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)
|
2000-07-07 16:04:40 +00:00
|
|
|
|
2002-12-27 16:51:53 +00:00
|
|
|
// See http://www.boost.org/libs/config for most recent version.
|
2000-07-07 16:04:40 +00:00
|
|
|
|
|
|
|
// Boost config.hpp policy and rationale documentation has been moved to
|
|
|
|
// http://www.boost.org/libs/config
|
|
|
|
//
|
2001-09-18 11:13:39 +00:00
|
|
|
// CAUTION: This file is intended to be completely stable -
|
|
|
|
// DO NOT MODIFY THIS FILE!
|
2000-07-07 16:04:40 +00:00
|
|
|
//
|
2000-11-17 11:33:43 +00:00
|
|
|
|
2001-09-18 11:13:39 +00:00
|
|
|
#ifndef BOOST_CONFIG_HPP
|
|
|
|
#define BOOST_CONFIG_HPP
|
2001-01-21 05:30:47 +00:00
|
|
|
|
2001-09-18 11:13:39 +00:00
|
|
|
// if we don't have a user config, then use the default location:
|
|
|
|
#if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG)
|
|
|
|
# define BOOST_USER_CONFIG <boost/config/user.hpp>
|
2014-02-20 11:44:56 +00:00
|
|
|
#if 0
|
|
|
|
// For dependency trackers:
|
|
|
|
# include <boost/config/user.hpp>
|
|
|
|
#endif
|
2001-01-21 05:30:47 +00:00
|
|
|
#endif
|
2001-09-18 11:13:39 +00:00
|
|
|
// include it first:
|
|
|
|
#ifdef BOOST_USER_CONFIG
|
|
|
|
# include BOOST_USER_CONFIG
|
2001-05-07 21:20:18 +00:00
|
|
|
#endif
|
|
|
|
|
2001-09-18 11:13:39 +00:00
|
|
|
// if we don't have a compiler config set, try and find one:
|
|
|
|
#if !defined(BOOST_COMPILER_CONFIG) && !defined(BOOST_NO_COMPILER_CONFIG) && !defined(BOOST_NO_CONFIG)
|
|
|
|
# include <boost/config/select_compiler_config.hpp>
|
2001-09-06 03:56:53 +00:00
|
|
|
#endif
|
2001-09-18 11:13:39 +00:00
|
|
|
// if we have a compiler config, include it now:
|
|
|
|
#ifdef BOOST_COMPILER_CONFIG
|
|
|
|
# include BOOST_COMPILER_CONFIG
|
2000-10-17 11:32:09 +00:00
|
|
|
#endif
|
2001-11-06 16:56:22 +00:00
|
|
|
|
|
|
|
// if we don't have a std library config set, try and find one:
|
2011-04-03 17:55:30 +00:00
|
|
|
#if !defined(BOOST_STDLIB_CONFIG) && !defined(BOOST_NO_STDLIB_CONFIG) && !defined(BOOST_NO_CONFIG) && defined(__cplusplus)
|
2001-11-06 16:56:22 +00:00
|
|
|
# include <boost/config/select_stdlib_config.hpp>
|
|
|
|
#endif
|
2001-09-18 11:13:39 +00:00
|
|
|
// if we have a std library config, include it now:
|
|
|
|
#ifdef BOOST_STDLIB_CONFIG
|
|
|
|
# include BOOST_STDLIB_CONFIG
|
2000-10-04 15:57:03 +00:00
|
|
|
#endif
|
2001-11-06 16:56:22 +00:00
|
|
|
|
|
|
|
// if we don't have a platform config set, try and find one:
|
|
|
|
#if !defined(BOOST_PLATFORM_CONFIG) && !defined(BOOST_NO_PLATFORM_CONFIG) && !defined(BOOST_NO_CONFIG)
|
|
|
|
# include <boost/config/select_platform_config.hpp>
|
|
|
|
#endif
|
2001-09-18 11:13:39 +00:00
|
|
|
// if we have a platform config, include it now:
|
|
|
|
#ifdef BOOST_PLATFORM_CONFIG
|
|
|
|
# include BOOST_PLATFORM_CONFIG
|
2001-02-11 19:29:01 +00:00
|
|
|
#endif
|
|
|
|
|
2001-09-18 11:13:39 +00:00
|
|
|
// get config suffix code:
|
|
|
|
#include <boost/config/suffix.hpp>
|
|
|
|
|
2013-09-01 19:07:06 +00:00
|
|
|
#ifdef BOOST_HAS_PRAGMA_ONCE
|
|
|
|
#pragma once
|
|
|
|
#endif
|
2003-10-04 11:29:20 +00:00
|
|
|
|
2013-09-01 19:07:06 +00:00
|
|
|
#endif // BOOST_CONFIG_HPP
|