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