sl@0
|
1 |
// Boost config.hpp configuration header file ------------------------------//
|
sl@0
|
2 |
|
sl@0
|
3 |
// (C) Copyright John Maddock 2002.
|
sl@0
|
4 |
// Use, modification and distribution are subject to the
|
sl@0
|
5 |
// Boost Software License, Version 1.0. (See accompanying file
|
sl@0
|
6 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
7 |
|
sl@0
|
8 |
// See http://www.boost.org/libs/config for most recent version.
|
sl@0
|
9 |
|
sl@0
|
10 |
// Boost config.hpp policy and rationale documentation has been moved to
|
sl@0
|
11 |
// http://www.boost.org/libs/config
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// CAUTION: This file is intended to be completely stable -
|
sl@0
|
14 |
// DO NOT MODIFY THIS FILE!
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef BOOST_CONFIG_HPP
|
sl@0
|
18 |
#define BOOST_CONFIG_HPP
|
sl@0
|
19 |
|
sl@0
|
20 |
// if we don't have a user config, then use the default location:
|
sl@0
|
21 |
#if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG)
|
sl@0
|
22 |
# define BOOST_USER_CONFIG <boost/config/user.hpp>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
// include it first:
|
sl@0
|
25 |
#ifdef BOOST_USER_CONFIG
|
sl@0
|
26 |
# include BOOST_USER_CONFIG
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
// if we don't have a compiler config set, try and find one:
|
sl@0
|
29 |
#if !defined(BOOST_COMPILER_CONFIG) && !defined(BOOST_NO_COMPILER_CONFIG) && !defined(BOOST_NO_CONFIG)
|
sl@0
|
30 |
# include <boost/config/select_compiler_config.hpp>
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
// if we have a compiler config, include it now:
|
sl@0
|
33 |
#ifdef BOOST_COMPILER_CONFIG
|
sl@0
|
34 |
# include BOOST_COMPILER_CONFIG
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
// if we don't have a std library config set, try and find one:
|
sl@0
|
38 |
#if !defined(BOOST_STDLIB_CONFIG) && !defined(BOOST_NO_STDLIB_CONFIG) && !defined(BOOST_NO_CONFIG)
|
sl@0
|
39 |
# include <boost/config/select_stdlib_config.hpp>
|
sl@0
|
40 |
#endif
|
sl@0
|
41 |
// if we have a std library config, include it now:
|
sl@0
|
42 |
#ifdef BOOST_STDLIB_CONFIG
|
sl@0
|
43 |
# include BOOST_STDLIB_CONFIG
|
sl@0
|
44 |
#endif
|
sl@0
|
45 |
|
sl@0
|
46 |
// if we don't have a platform config set, try and find one:
|
sl@0
|
47 |
#if !defined(BOOST_PLATFORM_CONFIG) && !defined(BOOST_NO_PLATFORM_CONFIG) && !defined(BOOST_NO_CONFIG)
|
sl@0
|
48 |
# include <boost/config/select_platform_config.hpp>
|
sl@0
|
49 |
#endif
|
sl@0
|
50 |
// if we have a platform config, include it now:
|
sl@0
|
51 |
#ifdef BOOST_PLATFORM_CONFIG
|
sl@0
|
52 |
# include BOOST_PLATFORM_CONFIG
|
sl@0
|
53 |
#endif
|
sl@0
|
54 |
|
sl@0
|
55 |
// get config suffix code:
|
sl@0
|
56 |
#include <boost/config/suffix.hpp>
|
sl@0
|
57 |
|
sl@0
|
58 |
#endif // BOOST_CONFIG_HPP
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
|
sl@0
|
69 |
|