OSDN Git Service

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