]> git.donarmstrong.com Git - rsem.git/blob - boost/tr1/detail/config_all.hpp
Updated boost to v1.55.0
[rsem.git] / boost / tr1 / detail / config_all.hpp
1 //  (C) Copyright John Maddock 2005.
2 //  Use, modification and distribution are subject to the
3 //  Boost Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 /*
7  * The gcc include path logic is derived from STLport:
8  *
9  * Copyright (c) 1994
10  * Hewlett-Packard Company
11  *
12  * Copyright (c) 1996-1999
13  * Silicon Graphics Computer Systems, Inc.
14  *
15  * Copyright (c) 1997
16  * Moscow Center for SPARC Technology
17  *
18  * Copyright (c) 1999-2003
19  * Boris Fomitchev
20  *
21  * This material is provided "as is", with absolutely no warranty expressed
22  * or implied. Any use is at your own risk.
23  *
24  * Permission to use or copy this software for any purpose is hereby granted 
25  * without fee, provided the above notices are retained on all copies.
26  * Permission to modify the code and to distribute modified code is granted,
27  * provided the above notices are retained, and a notice that the code was
28  * modified is included with the above copyright notice.
29  *
30  */
31
32 #ifndef BOOST_TR1_DETAIL_CONFIG_ALL_HPP_INCLUDED
33 #  define BOOST_TR1_DETAIL_CONFIG_ALL_HPP_INCLUDED
34
35 //
36 // IMPORTANT: we must figure out the basics, such as how to
37 // forward to the real std lib headers *without* including
38 // boost/config.hpp or any of the std lib headers.  A classic 
39 // chicken and the egg problem....
40 //
41 // Including <cstddef> at least lets us detect STLport:
42 //
43 #include <cstddef>
44
45 // Including <cstdlib> allows us to use __GLIBCXX__ to
46 // determine the version of the stdc++ library in use
47 // under Darwin.
48 #include <cstdlib>
49
50 #  if defined(_RWSTD_VER) && _RWSTD_VER >= 0x04010200
51 #     if !defined (__SUNPRO_CC) && !defined (__DECCXX)
52 #        define BOOST_TR1_STD_CHEADER(name) <../include/ansi/name>
53 #     endif
54 #  endif
55
56
57 #  if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && !defined(__BORLANDC__)
58 #     ifdef __SUNPRO_CC
59          // can't use <../stlport/name> since some compilers put stlport in a different directory:
60 #        define BOOST_TR1_STD_HEADER(name) <../stlport4/name>
61 #     elif defined(__PGI)
62 #        define BOOST_TR1_STD_HEADER(name) <../CC/name>
63 #     else
64 #        define BOOST_TR1_STD_HEADER(name) <../stlport/name>
65 #     endif
66 #  elif defined(__PATHSCALE__) && (defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER))
67 #     define BOOST_TR1_STD_HEADER(name) <../include/name>
68
69 #  elif defined(__SUNPRO_CC) && (defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER))
70 #     define BOOST_TR1_STD_HEADER(name) <../stdcxx4/name>
71
72 #  elif defined(__HP_aCC)
73       // HP aCC include path:
74 #     define BOOST_TR1_STD_HEADER(name) <../include_std/name>
75
76 #  elif defined(__DECCXX)
77 #     define BOOST_TR1_STD_HEADER(name) <../cxx/name>
78
79 #  elif defined(__BORLANDC__) && __BORLANDC__ >= 0x570
80 #     define BOOST_TR1_STD_HEADER(name) <../include/dinkumware/name>
81
82 #  elif defined(__clang__)
83 #     define BOOST_TR1_STD_HEADER(name) <../include/name>
84
85 #  elif defined(__GNUC__) && __GNUC__ >= 3
86 #    if defined(BOOST_TR1_GCC_INCLUDE_PATH)
87 #      define BOOST_TR1_STD_HEADER(name) <../BOOST_TR1_GCC_INCLUDE_PATH/name>
88 #    elif ( (__GNUC__ == 3 ) && ((__GNUC_MINOR__ == 0) || ((__GNUC_MINOR__ < 3) && defined(__APPLE_CC__))))
89 #      define BOOST_TR1_STD_HEADER(name) <../g++-v3/name>
90 #    else
91 #      if ( ((__GNUC__ == 3 ) && (__GNUC_MINOR__ >= 3)) && (defined(__APPLE_CC__) || defined(__CYGWIN__)))
92 #        define BOOST_TR1_STD_HEADER(name) <../c++/name>
93 #      elif ((__GLIBCXX__ == 20050421) && defined(__APPLE_CC__))
94          // Some Darwin tools fix libstdc++ at 4.0.0 irrespective of the actual
95          // compiler version:
96 #        define BOOST_TR1_STD_HEADER(name) <../4.0.0/name>
97          /*
98           *  Before version 3.4.0 the 0 patch level was not part of the include path:
99           */
100 #      elif defined (__GNUC_PATCHLEVEL__) && ((__GNUC_PATCHLEVEL__ > 0) || \
101                                               (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
102                                               (__GNUC__ > 3))
103 #        define BOOST_TR1_STD_HEADER(name) <../__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__/name>
104 #      else
105 #        define BOOST_TR1_STD_HEADER(name) <../__GNUC__.__GNUC_MINOR__/name>
106 #      endif
107 #    endif
108
109 #      if !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT) && !defined(__ICC) \
110             && (defined(linux) || defined(__linux) || defined(__linux__) || defined(__GNU__) || defined(__GLIBC__))
111          // Disable use of #include_next on Linux as typically we are installed in a directory that is searched
112          // *after* the std lib include path:
113 #        define BOOST_TR1_DISABLE_INCLUDE_NEXT
114 #      endif
115
116 #  else
117 #     define BOOST_TR1_STD_HEADER(name) <../include/name>
118 #  endif
119
120 #if !defined(BOOST_TR1_STD_CHEADER)
121 #  define BOOST_TR1_STD_CHEADER(name) BOOST_TR1_STD_HEADER(name)
122 #endif
123
124 #if defined(__GNUC__) && !defined(BOOST_HAS_INCLUDE_NEXT)
125 #  define BOOST_HAS_INCLUDE_NEXT
126 #endif
127 #ifdef __GXX_EXPERIMENTAL_CXX0X__
128 #  define BOOST_HAS_CPP_0X
129 #endif
130 #if defined(_MSC_VER) && (_MSC_VER >= 1600) && !defined(BOOST_HAS_CPP_0X)
131 #   define BOOST_HAS_CPP_0X
132 #endif
133 //
134 // We may be in the middle of parsing boost/config.hpp
135 // when this header is included, so don't rely on config
136 // stuff in the rest of this header...
137 //
138 // Find our actual std lib:
139 //
140 #if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
141 //
142 // We don't take this branch if BOOST_TR1_DISABLE_INCLUDE_NEXT
143 // is defined as we may be installed in 
144 // /usr/include, in which case #include_next won't work as our
145 // include path will occur AFTER the regular std lib one :-(
146 //
147 #  ifndef BOOST_TR1_NO_RECURSION
148 #     define BOOST_TR1_NO_RECURSION
149 #     define BOOST_TR1_NO_CONFIG_ALL_RECURSION
150 #  endif
151 #  include_next <utility>
152 #  if (__GNUC__ < 3)
153 #     include_next <algorithm>
154 #     include_next <iterator>
155 #  endif
156 #  ifdef BOOST_TR1_NO_CONFIG_ALL_RECURSION
157 #     undef BOOST_TR1_NO_CONFIG_ALL_RECURSION
158 #     undef BOOST_TR1_NO_RECURSION
159 #  endif
160 #else
161 #  include BOOST_TR1_STD_HEADER(utility)
162 #endif
163
164 #include <boost/tr1/detail/config.hpp>
165
166 #endif
167
168