Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r81827 - in branches/release: boost boost/config boost/config/compiler boost/config/stdlib libs/config libs/config/doc libs/config/doc/html libs/config/doc/html/boost_config libs/config/test libs/config/test/all
From: john_at_[hidden]
Date: 2012-12-10 12:26:33


Author: johnmaddock
Date: 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
New Revision: 81827
URL: http://svn.boost.org/trac/boost/changeset/81827

Log:
Merge config updates from Trunk.
Added:
   branches/release/libs/config/test/boost_has_int128.ipp
      - copied unchanged from r81825, /trunk/libs/config/test/boost_has_int128.ipp
   branches/release/libs/config/test/has_int128_fail.cpp
      - copied unchanged from r81825, /trunk/libs/config/test/has_int128_fail.cpp
   branches/release/libs/config/test/has_int128_pass.cpp
      - copied unchanged from r81825, /trunk/libs/config/test/has_int128_pass.cpp
Removed:
   branches/release/libs/config/test/boost_no_std_unordered.ipp
   branches/release/libs/config/test/no_std_unordered_fail.cpp
   branches/release/libs/config/test/no_std_unordered_pass.cpp
Properties modified:
   branches/release/boost/config/ (props changed)
   branches/release/boost/config.hpp (props changed)
   branches/release/boost/config/compiler/ (props changed)
   branches/release/boost/config/stdlib/ (props changed)
   branches/release/boost/config/suffix.hpp (contents, props changed)
   branches/release/boost/current_function.hpp (props changed)
   branches/release/libs/config/ (props changed)
   branches/release/libs/config/doc/macro_reference.qbk (contents, props changed)
   branches/release/libs/config/test/ (props changed)
Text files modified:
   branches/release/boost/config/auto_link.hpp | 105 +-
   branches/release/boost/config/compiler/clang.hpp | 9
   branches/release/boost/config/compiler/gcc.hpp | 6
   branches/release/boost/config/compiler/visualc.hpp | 10
   branches/release/boost/config/stdlib/dinkumware.hpp | 11
   branches/release/boost/config/suffix.hpp | 23
   branches/release/libs/config/doc/configuring_boost.qbk | 2
   branches/release/libs/config/doc/html/boost_config/acknowledgements.html | 2
   branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html | 632 ++++++++++++++
   branches/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html | 10
   branches/release/libs/config/doc/html/boost_config/rationale.html | 2
   branches/release/libs/config/doc/html/index.html | 14
   branches/release/libs/config/doc/macro_reference.qbk | 7
   branches/release/libs/config/test/all/Jamfile.v2 | 920 ++++++++++----------
   branches/release/libs/config/test/boost_has_hash.ipp | 4
   branches/release/libs/config/test/boost_no_cxx11_atomic_sp.ipp | 1
   branches/release/libs/config/test/boost_no_cxx11_hdr_future.ipp | 1
   branches/release/libs/config/test/boost_no_cxx11_hdr_type_traits.ipp | 1
   branches/release/libs/config/test/config_info.cpp | 5
   branches/release/libs/config/test/config_test.cpp | 1686 ++++++++++++++++++++--------------------
   20 files changed, 2026 insertions(+), 1425 deletions(-)

Modified: branches/release/boost/config/auto_link.hpp
==============================================================================
--- branches/release/boost/config/auto_link.hpp (original)
+++ branches/release/boost/config/auto_link.hpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -60,14 +60,14 @@
 
 BOOST_LIB_RT_OPT: A suffix that indicates the runtime library used,
                       contains one or more of the following letters after
- a hiphen:
+ a hyphen:
 
                       s static runtime (dynamic if not present).
                       g debug/diagnostic runtime (release if not present).
                       y Python debug/diagnostic runtime (release if not present).
                       d debug build (release if not present).
- g debug/diagnostic runtime (release if not present).
- p STLPort Build.
+ p STLport build.
+ n STLport build without its IOStreams.
 
 BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
 
@@ -114,68 +114,69 @@
 // select toolset if not defined already:
 //
 #ifndef BOOST_LIB_TOOLSET
-// Note: no compilers before 1200 are supported
-#if defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
+# if defined(BOOST_MSVC) && (BOOST_MSVC < 1200)
+ // Note: no compilers before 1200 are supported
+# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
 
-# ifdef UNDER_CE
- // vc6:
-# define BOOST_LIB_TOOLSET "evc4"
-# else
- // vc6:
-# define BOOST_LIB_TOOLSET "vc6"
-# endif
+# ifdef UNDER_CE
+ // eVC4:
+# define BOOST_LIB_TOOLSET "evc4"
+# else
+ // vc6:
+# define BOOST_LIB_TOOLSET "vc6"
+# endif
 
-#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1300)
+# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1310)
 
- // vc7:
-# define BOOST_LIB_TOOLSET "vc7"
+ // vc7:
+# define BOOST_LIB_TOOLSET "vc7"
 
-#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1310)
+# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1400)
 
- // vc71:
-# define BOOST_LIB_TOOLSET "vc71"
+ // vc71:
+# define BOOST_LIB_TOOLSET "vc71"
 
-#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1400)
+# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1500)
 
- // vc80:
-# define BOOST_LIB_TOOLSET "vc80"
+ // vc80:
+# define BOOST_LIB_TOOLSET "vc80"
 
-#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1500)
+# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1600)
 
- // vc90:
-# define BOOST_LIB_TOOLSET "vc90"
+ // vc90:
+# define BOOST_LIB_TOOLSET "vc90"
 
-#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1600)
+# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1700)
 
- // vc10:
-# define BOOST_LIB_TOOLSET "vc100"
+ // vc10:
+# define BOOST_LIB_TOOLSET "vc100"
 
-#elif defined(BOOST_MSVC) && (BOOST_MSVC >= 1700)
+# elif defined(BOOST_MSVC)
 
- // vc11:
-# define BOOST_LIB_TOOLSET "vc110"
+ // vc11:
+# define BOOST_LIB_TOOLSET "vc110"
 
-#elif defined(__BORLANDC__)
+# elif defined(__BORLANDC__)
 
- // CBuilder 6:
-# define BOOST_LIB_TOOLSET "bcb"
+ // CBuilder 6:
+# define BOOST_LIB_TOOLSET "bcb"
 
-#elif defined(__ICL)
+# elif defined(__ICL)
 
- // Intel C++, no version number:
-# define BOOST_LIB_TOOLSET "iw"
+ // Intel C++, no version number:
+# define BOOST_LIB_TOOLSET "iw"
 
-#elif defined(__MWERKS__) && (__MWERKS__ <= 0x31FF )
+# elif defined(__MWERKS__) && (__MWERKS__ <= 0x31FF )
 
- // Metrowerks CodeWarrior 8.x
-# define BOOST_LIB_TOOLSET "cw8"
+ // Metrowerks CodeWarrior 8.x
+# define BOOST_LIB_TOOLSET "cw8"
 
-#elif defined(__MWERKS__) && (__MWERKS__ <= 0x32FF )
+# elif defined(__MWERKS__) && (__MWERKS__ <= 0x32FF )
 
- // Metrowerks CodeWarrior 9.x
-# define BOOST_LIB_TOOLSET "cw9"
+ // Metrowerks CodeWarrior 9.x
+# define BOOST_LIB_TOOLSET "cw9"
 
-#endif
+# endif
 #endif // BOOST_LIB_TOOLSET
 
 //
@@ -201,11 +202,11 @@
 # elif defined(_DEBUG)\
                && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
 # define BOOST_LIB_RT_OPT "-gydp"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # elif defined(_DEBUG)
 # define BOOST_LIB_RT_OPT "-gdp"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # else
 # define BOOST_LIB_RT_OPT "-p"
@@ -221,11 +222,11 @@
 # elif defined(_DEBUG)\
                && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
 # define BOOST_LIB_RT_OPT "-gydpn"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # elif defined(_DEBUG)
 # define BOOST_LIB_RT_OPT "-gdpn"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # else
 # define BOOST_LIB_RT_OPT "-pn"
@@ -255,11 +256,11 @@
 # elif defined(_DEBUG)\
                && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
 # define BOOST_LIB_RT_OPT "-sgydp"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # elif defined(_DEBUG)
 # define BOOST_LIB_RT_OPT "-sgdp"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # else
 # define BOOST_LIB_RT_OPT "-sp"
@@ -275,11 +276,11 @@
 # elif defined(_DEBUG)\
                && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
 # define BOOST_LIB_RT_OPT "-sgydpn"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # elif defined(_DEBUG)
 # define BOOST_LIB_RT_OPT "-sgdpn"
-# pragma message("warning: STLPort debug versions are built with /D_STLP_DEBUG=1")
+# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
 # error "Build options aren't compatible with pre-built libraries"
 # else
 # define BOOST_LIB_RT_OPT "-spn"
@@ -312,7 +313,7 @@
 // sanity check:
 //
 #if defined(__STL_DEBUG) || defined(_STLP_DEBUG)
-#error "Pre-built versions of the Boost libraries are not provided in STLPort-debug form"
+#error "Pre-built versions of the Boost libraries are not provided in STLport-debug form"
 #endif
 
 # ifdef _RTLDLL

Modified: branches/release/boost/config/compiler/clang.hpp
==============================================================================
--- branches/release/boost/config/compiler/clang.hpp (original)
+++ branches/release/boost/config/compiler/clang.hpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -29,6 +29,15 @@
 // Clang supports "long long" in all compilation modes.
 #define BOOST_HAS_LONG_LONG
 
+//
+// Dynamic shared object (DSO) and dynamic-link library (DLL) support
+//
+#if !defined(_WIN32) && !defined(__WIN32__) && !defined(WIN32)
+# define BOOST_SYMBOL_EXPORT __attribute__((__visibility__("default")))
+# define BOOST_SYMBOL_IMPORT
+# define BOOST_SYMBOL_VISIBLE __attribute__((__visibility__("default")))
+#endif
+
 #if !__has_feature(cxx_auto_type)
 # define BOOST_NO_CXX11_AUTO_DECLARATIONS
 # define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS

Modified: branches/release/boost/config/compiler/gcc.hpp
==============================================================================
--- branches/release/boost/config/compiler/gcc.hpp (original)
+++ branches/release/boost/config/compiler/gcc.hpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -146,6 +146,12 @@
 # endif
 #endif
 
+//
+// Recent GCC versions have __int128 when in 64-bit mode:
+//
+#if defined(__SIZEOF_INT128__)
+# define BOOST_HAS_INT128
+#endif
 
 // C++0x features in 4.3.n and later
 //

Modified: branches/release/boost/config/compiler/visualc.hpp
==============================================================================
--- branches/release/boost/config/compiler/visualc.hpp (original)
+++ branches/release/boost/config/compiler/visualc.hpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -184,6 +184,16 @@
 #endif
 
 //
+// TR1 features:
+//
+#if _MSC_VER >= 1700
+// # define BOOST_HAS_TR1_HASH // don't know if this is true yet.
+// # define BOOST_HAS_TR1_TYPE_TRAITS // don't know if this is true yet.
+# define BOOST_HAS_TR1_UNORDERED_MAP
+# define BOOST_HAS_TR1_UNORDERED_SET
+#endif
+
+//
 // C++0x features
 //
 // See above for BOOST_NO_LONG_LONG

Modified: branches/release/boost/config/stdlib/dinkumware.hpp
==============================================================================
--- branches/release/boost/config/stdlib/dinkumware.hpp (original)
+++ branches/release/boost/config/stdlib/dinkumware.hpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -113,9 +113,10 @@
 #if (!defined(_HAS_TR1_IMPORTS) || (_HAS_TR1_IMPORTS+0 == 0)) && !defined(BOOST_NO_CXX11_HDR_TUPLE)
 # define BOOST_NO_CXX11_HDR_TUPLE
 #endif
+
+// C++0x headers implemented in 540 (as shipped by Microsoft)
 //
-// C++0x headers not yet (fully) implemented:
-//
+#if !defined(_CPPLIB_VER) || _CPPLIB_VER < 540
 # define BOOST_NO_CXX11_HDR_TYPE_TRAITS
 # define BOOST_NO_CXX11_HDR_CHRONO
 # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
@@ -125,6 +126,12 @@
 # define BOOST_NO_CXX11_HDR_THREAD
 # define BOOST_NO_CXX11_ALLOCATOR
 # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
+#endif
+
+//
+// C++0x headers not yet (fully) implemented:
+//
+# define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
 
 #ifdef _CPPLIB_VER
 # define BOOST_DINKUMWARE_STDLIB _CPPLIB_VER

Modified: branches/release/boost/config/suffix.hpp
==============================================================================
--- branches/release/boost/config/suffix.hpp (original)
+++ branches/release/boost/config/suffix.hpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -1,4 +1,5 @@
 // Boost config.hpp configuration header file ------------------------------//
+// boostinspect:ndprecated_macros -- tell the inspect tool to ignore this file
 
 // Copyright (c) 2001-2003 John Maddock
 // Copyright (c) 2001 Darin Adler
@@ -488,6 +489,18 @@
 # endif
 }
 #endif
+// same again for __int128:
+#if defined(BOOST_HAS_INT128) && defined(__cplusplus)
+namespace boost{
+# ifdef __GNUC__
+ __extension__ typedef __int128 int128_type;
+ __extension__ typedef unsigned __int128 uint128_type;
+# else
+ typedef __int128 int128_type;
+ typedef unsigned __int128 uint128_type;
+# endif
+}
+#endif
 
 // BOOST_[APPEND_]EXPLICIT_TEMPLATE_[NON_]TYPE macros --------------------------//
 //
@@ -647,8 +660,8 @@
 // Use BOOST_NO_CXX11_HDR_UNORDERED_SET or BOOST_NO_CXX11_HDR_UNORDERED_MAP
 // instead of BOOST_NO_STD_UNORDERED
 #if defined(BOOST_NO_CXX11_HDR_UNORDERED_MAP) || defined (BOOST_NO_CXX11_HDR_UNORDERED_SET)
-# ifndef BOOST_NO_STD_UNORDERED
-# define BOOST_NO_STD_UNORDERED
+# ifndef BOOST_NO_CXX11_STD_UNORDERED
+# define BOOST_NO_CXX11_STD_UNORDERED
 # endif
 #endif
 
@@ -827,9 +840,9 @@
 #if defined(BOOST_NO_CXX11_STATIC_ASSERT) && !defined(BOOST_NO_STATIC_ASSERT)
 # define BOOST_NO_STATIC_ASSERT
 #endif
-// Use BOOST_NO_CXX11_STD_UNORDERD instead of BOOST_NO_STD_UNORDERD
-#if defined(BOOST_NO_CXX11_STD_UNORDERD) && !defined(BOOST_NO_STD_UNORDERD)
-# define BOOST_NO_STD_UNORDERD
+// Use BOOST_NO_CXX11_STD_UNORDERED instead of BOOST_NO_STD_UNORDERED
+#if defined(BOOST_NO_CXX11_STD_UNORDERED) && !defined(BOOST_NO_STD_UNORDERED)
+# define BOOST_NO_STD_UNORDERED
 #endif
 // Use BOOST_NO_CXX11_UNICODE_LITERALS instead of BOOST_NO_UNICODE_LITERALS
 #if defined(BOOST_NO_CXX11_UNICODE_LITERALS) && !defined(BOOST_NO_UNICODE_LITERALS)

Modified: branches/release/libs/config/doc/configuring_boost.qbk
==============================================================================
--- branches/release/libs/config/doc/configuring_boost.qbk (original)
+++ branches/release/libs/config/doc/configuring_boost.qbk 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -372,7 +372,7 @@
 [[`config_info.cpp`][
 Prints out a detailed description of your compiler/standard library/platform
 setup, plus your current boost configuration. The information provided by this
-program useful in setting up the boost configuration files. If you report that
+program is useful in setting up the boost configuration files. If you report that
 boost is incorrectly configured for your compiler/library/platform then please
 include the output from this program when reporting the changes required.
 ]]

Modified: branches/release/libs/config/doc/html/boost_config/acknowledgements.html
==============================================================================
--- branches/release/libs/config/doc/html/boost_config/acknowledgements.html (original)
+++ branches/release/libs/config/doc/html/boost_config/acknowledgements.html 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Acknowledgements</title>
 <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../index.html" title="Boost.Config">
 <link rel="up" href="../index.html" title="Boost.Config">
 <link rel="prev" href="rationale.html" title="Rationale">

Modified: branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html
==============================================================================
--- branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html (original)
+++ branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Boost Macro Reference</title>
 <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../index.html" title="Boost.Config">
 <link rel="up" href="../index.html" title="Boost.Config">
 <link rel="prev" href="../index.html" title="Boost.Config">
@@ -556,7 +556,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_NUMERIC_LIMITS_LOWEST</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_NUMERIC_LIMITS</span></code>
                 </p>
               </td>
 <td>
@@ -566,7 +566,18 @@
               </td>
 <td>
                 <p>
- Static function <code class="computeroutput"><span class="identifier">numeric_limits</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;::</span><span class="identifier">lowest</span><span class="special">()</span></code> is not available for use.
+ C++11 additions to <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">numeric_limits</span></code>
+ are not available for use. <code class="computeroutput"><span class="keyword">static</span>
+ <span class="identifier">function</span> <span class="identifier">numeric_limits</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;::</span><span class="identifier">lowest</span><span class="special">()</span></code> the lowest finite value representable
+ by the numeric type. <code class="computeroutput"><span class="keyword">static</span>
+ <span class="keyword">int</span> <span class="keyword">const</span>
+ <span class="identifier">max_digits10</span></code> the number
+ of decimal digits that are required to make sure that two distinct
+ values of the type have distinct decimal representations. <code class="computeroutput"><span class="keyword">template</span><span class="special">&lt;&gt;</span>
+ <span class="keyword">class</span> <span class="identifier">numeric_limits</span><span class="special">&lt;</span><span class="identifier">char16_t</span><span class="special">&gt;;</span></code>, see also <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CHAR16_T</span></code>,
+ <code class="computeroutput"><span class="keyword">template</span><span class="special">&lt;&gt;</span>
+ <span class="keyword">class</span> <span class="identifier">numeric_limits</span><span class="special">&lt;</span><span class="identifier">char32_t</span><span class="special">&gt;;</span></code> see also <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CHAR32_T</span></code>.
+ Replaces BOOST_NO_NUMERIC_LIMITS_LOWEST.
                 </p>
               </td>
 </tr>
@@ -1505,6 +1516,26 @@
 <tr>
 <td>
                 <p>
+ <code class="computeroutput"><span class="identifier">BOOST_HAS_INT128</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Compiler
+ </p>
+ </td>
+<td>
+ <p>
+ The compiler has <code class="computeroutput"><span class="identifier">__int128</span></code>
+ and <code class="computeroutput"><span class="keyword">unsigned</span> <span class="identifier">__int128</span></code>
+ as native types which are distinct from all the regular C++ integer
+ types.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
                   <code class="computeroutput"><span class="identifier">BOOST_HAS_LOG1P</span></code>
                 </p>
               </td>
@@ -2573,7 +2604,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_AUTO_DECLARATIONS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_AUTO_DECLARATIONS</span></code>
                 </p>
               </td>
 <td>
@@ -2588,7 +2619,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_AUTO_MULTIDECLARATIONS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS</span></code>
                 </p>
               </td>
 <td>
@@ -2605,7 +2636,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_CHAR16_T</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CHAR16_T</span></code>
                 </p>
               </td>
 <td>
@@ -2617,7 +2648,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_CHAR32_T</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CHAR32_T</span></code>
                 </p>
               </td>
 <td>
@@ -2629,7 +2660,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_TEMPLATE_ALIASES</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_TEMPLATE_ALIASES</span></code>
                 </p>
               </td>
 <td>
@@ -2641,7 +2672,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_CONSTEXPR</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CONSTEXPR</span></code>
                 </p>
               </td>
 <td>
@@ -2653,7 +2684,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_DECLTYPE</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DECLTYPE</span></code>
                 </p>
               </td>
 <td>
@@ -2665,7 +2696,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_DECLTYPE_N3276</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DECLTYPE_N3276</span></code>
                 </p>
               </td>
 <td>
@@ -2679,7 +2710,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_DEFAULTED_FUNCTIONS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DEFAULTED_FUNCTIONS</span></code>
                 </p>
               </td>
 <td>
@@ -2692,7 +2723,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_DELETED_FUNCTIONS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DELETED_FUNCTIONS</span></code>
                 </p>
               </td>
 <td>
@@ -2705,7 +2736,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_EXPLICIT_CONVERSION_OPERATORS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS</span></code>
                 </p>
               </td>
 <td>
@@ -2718,7 +2749,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_EXTERN_TEMPLATE</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_EXTERN_TEMPLATE</span></code>
                 </p>
               </td>
 <td>
@@ -2731,7 +2762,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS</span></code>
                 </p>
               </td>
 <td>
@@ -2744,7 +2775,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_LAMBDAS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_LAMBDAS</span></code>
                 </p>
               </td>
 <td>
@@ -2756,7 +2787,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_LOCAL_CLASS_TEMPLATE_PARAMETERS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS</span></code>
                 </p>
               </td>
 <td>
@@ -2783,7 +2814,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_NOEXCEPT</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_NOEXCEPT</span></code>
                 </p>
               </td>
 <td>
@@ -2795,7 +2826,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_NULLPTR</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_NULLPTR</span></code>
                 </p>
               </td>
 <td>
@@ -2807,80 +2838,80 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_RAW_LITERALS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_RANGE_BASED_FOR</span></code>
                 </p>
               </td>
 <td>
                 <p>
- The compiler does not support raw string literals.
+ The compiler does not support range-based for statements.
                 </p>
               </td>
 </tr>
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_RVALUE_REFERENCES</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_RAW_LITERALS</span></code>
                 </p>
               </td>
 <td>
                 <p>
- The compiler does not support r-value references.
+ The compiler does not support raw string literals.
                 </p>
               </td>
 </tr>
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_SCOPED_ENUMS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_RVALUE_REFERENCES</span></code>
                 </p>
               </td>
 <td>
                 <p>
- The compiler does not support scoped enumerations (<code class="computeroutput"><span class="keyword">enum</span> <span class="keyword">class</span></code>).
+ The compiler does not support r-value references.
                 </p>
               </td>
 </tr>
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_STATIC_ASSERT</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_SCOPED_ENUMS</span></code>
                 </p>
               </td>
 <td>
                 <p>
- The compiler does not support <code class="computeroutput"><span class="identifier">static_assert</span></code>.
+ The compiler does not support scoped enumerations (<code class="computeroutput"><span class="keyword">enum</span> <span class="keyword">class</span></code>).
                 </p>
               </td>
 </tr>
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_STD_UNORDERD</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_STATIC_ASSERT</span></code>
                 </p>
               </td>
 <td>
                 <p>
- The standard library does not support &lt;unordered_map&gt; and
- &lt;unordered_set&gt;.
+ The compiler does not support <code class="computeroutput"><span class="identifier">static_assert</span></code>.
                 </p>
               </td>
 </tr>
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_TEMPLATE_ALIASES</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_STD_UNORDERD</span></code>
                 </p>
               </td>
 <td>
                 <p>
- The compiler does not support template aliases.
+ The standard library does not support &lt;unordered_map&gt; and
+ &lt;unordered_set&gt;.
                 </p>
               </td>
 </tr>
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_UNICODE_LITERALS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_UNICODE_LITERALS</span></code>
                 </p>
               </td>
 <td>
@@ -2893,7 +2924,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX</span></code>
                 </p>
               </td>
 <td>
@@ -2906,7 +2937,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_VARIADIC_TEMPLATES</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_VARIADIC_TEMPLATES</span></code>
                 </p>
               </td>
 <td>
@@ -2918,7 +2949,7 @@
 <tr>
 <td>
                 <p>
- <code class="computeroutput"><span class="identifier">BOOST_NO_VARIADIC_MACROS</span></code>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_VARIADIC_MACROS</span></code>
                 </p>
               </td>
 <td>
@@ -4167,6 +4198,529 @@
 <td>
               </td>
 </tr>
+<tr>
+<td>
+ </td>
+<td>
+ </td>
+<td>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_AUTO_DECLARATIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_AUTO_DECLARATIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_AUTO_MULTIDECLARATIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CHAR16_T</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CHAR16_T</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CHAR32_T</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CHAR32_T</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_TEMPLATE_ALIASES</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_TEMPLATE_ALIASES</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CONSTEXPR</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_CONSTEXPR</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_DECLTYPE</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DECLTYPE</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_DECLTYPE_N3276</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DECLTYPE_N3276</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_DEFAULTED_FUNCTIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DEFAULTED_FUNCTIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_DELETED_FUNCTIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_DELETED_FUNCTIONS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_EXPLICIT_CONVERSION_OPERATORS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_EXTERN_TEMPLATE</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_EXTERN_TEMPLATE</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_LAMBDAS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_LAMBDAS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_LOCAL_CLASS_TEMPLATE_PARAMETERS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_NOEXCEPT</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_NOEXCEPT</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_NULLPTR</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_NULLPTR</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_RAW_LITERALS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_RAW_LITERALS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_RVALUE_REFERENCES</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_RVALUE_REFERENCES</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_SCOPED_ENUMS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_SCOPED_ENUMS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_STATIC_ASSERT</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_STATIC_ASSERT</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_STD_UNORDERD</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_STD_UNORDERD</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_UNICODE_LITERALS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_UNICODE_LITERALS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_VARIADIC_TEMPLATES</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_VARIADIC_TEMPLATES</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_VARIADIC_MACROS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_VARIADIC_MACROS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_NUMERIC_LIMITS_LOWEST</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_CXX11_NUMERIC_LIMITS</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Boost 1.51
+ </p>
+ </td>
+<td>
+ </td>
+</tr>
 </tbody>
 </table></div>
 </div>
@@ -4187,7 +4741,7 @@
         The following macros and helper headers are of use to authors whose libraries
         include separate source code, and are intended to address several issues:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             Controlling shared library symbol visibility
           </li>
@@ -4443,7 +4997,7 @@
         </p>
 <div class="variablelist">
 <p class="title"><b></b></p>
-<dl>
+<dl class="variablelist">
 <dt><span class="term"><code class="computeroutput"><span class="identifier">BOOST_LIB_NAME</span></code></span></dt>
 <dd><p>
                 Required: An identifier containing the basename of the library, for

Modified: branches/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html
==============================================================================
--- branches/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html (original)
+++ branches/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Guidelines for Boost Authors</title>
 <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../index.html" title="Boost.Config">
 <link rel="up" href="../index.html" title="Boost.Config">
 <link rel="prev" href="boost_macro_reference.html" title="Boost Macro Reference">
@@ -61,7 +61,7 @@
 <p>
       Note that:
     </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
           Boost library implementers are not required to "<code class="computeroutput"><span class="preprocessor">#include</span>
           <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">config</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>", and are not required in any
@@ -116,7 +116,7 @@
 <p>
         Note that:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             This header <span class="bold"><strong><span class="emphasis"><em>should never be included
             by another Boost header</em></span></strong></span>, it should only ever be
@@ -233,7 +233,7 @@
         Once the test code is in place in libs/config/test, updating the configuration
         test system proceeds as:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             cd into <code class="computeroutput"><span class="identifier">libs</span><span class="special">/</span><span class="identifier">config</span><span class="special">/</span><span class="identifier">tools</span></code> and run <code class="computeroutput"><span class="identifier">bjam</span></code>.
             This generates the <code class="computeroutput"><span class="special">.</span><span class="identifier">cpp</span></code>
@@ -266,7 +266,7 @@
 <p>
         Then you should:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             Define the defect macro in those config headers that require it.
           </li>

Modified: branches/release/libs/config/doc/html/boost_config/rationale.html
==============================================================================
--- branches/release/libs/config/doc/html/boost_config/rationale.html (original)
+++ branches/release/libs/config/doc/html/boost_config/rationale.html 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Rationale</title>
 <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="../index.html" title="Boost.Config">
 <link rel="up" href="../index.html" title="Boost.Config">
 <link rel="prev" href="guidelines_for_boost_authors.html" title="Guidelines for Boost Authors">

Modified: branches/release/libs/config/doc/html/index.html
==============================================================================
--- branches/release/libs/config/doc/html/index.html (original)
+++ branches/release/libs/config/doc/html/index.html 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Boost.Config</title>
 <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
 <link rel="home" href="index.html" title="Boost.Config">
 <link rel="next" href="boost_config/boost_macro_reference.html" title="Boost Macro Reference">
 </head>
@@ -292,7 +292,7 @@
         (located under <span class="emphasis"><em>&lt;boost-root&gt;</em></span><code class="computeroutput"><span class="special">/</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">config</span><span class="special">/</span></code>).
         There are two ways you can use this header:
       </p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
             <span class="bold"><strong>Option 1:</strong></span> copy the header into <span class="emphasis"><em>&lt;boost-root&gt;</em></span><code class="computeroutput"><span class="special">/</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">config</span><span class="special">/</span></code> so that it replaces the default user.hpp
             provided by boost. This option allows only one configure-generated setup;
@@ -826,10 +826,10 @@
                 <p>
                   Prints out a detailed description of your compiler/standard library/platform
                   setup, plus your current boost configuration. The information provided
- by this program useful in setting up the boost configuration files.
- If you report that boost is incorrectly configured for your compiler/library/platform
- then please include the output from this program when reporting
- the changes required.
+ by this program is useful in setting up the boost configuration
+ files. If you report that boost is incorrectly configured for your
+ compiler/library/platform then please include the output from this
+ program when reporting the changes required.
                 </p>
               </td>
 </tr>
@@ -951,7 +951,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: April 22, 2012 at 10:30:25 GMT</small></p></td>
+<td align="left"><p><small>Last revised: October 25, 2012 at 12:28:15 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: branches/release/libs/config/doc/macro_reference.qbk
==============================================================================
--- branches/release/libs/config/doc/macro_reference.qbk (original)
+++ branches/release/libs/config/doc/macro_reference.qbk 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -368,6 +368,9 @@
 `BOOST_STD_EXTENSION_NAMESPACE` will provide the namespace in which the two
 class templates reside.
 ]]
+[[`BOOST_HAS_INT128`][Compiler][
+The compiler has `__int128` and `unsigned __int128` as native types which are distinct
+from all the regular C++ integer types.]]
 [[`BOOST_HAS_LOG1P`][Platform][
 The platform has the functions `log1p`, `log1pf` and `log1pl` in `<math.h>`.
 ]]
@@ -633,7 +636,7 @@
 [[`BOOST_NO_CXX11_STATIC_ASSERT`][The compiler does not support
 `static_assert`.
 ]]
-[[`BOOST_NO_CXX11_STD_UNORDERD`][The standard library does not support
+[[`BOOST_NO_CXX11_STD_UNORDERED`][The standard library does not support
 <unordered_map> and <unordered_set>.
 ]]
 [[`BOOST_NO_CXX11_UNICODE_LITERALS`][The compiler does not support
@@ -1045,7 +1048,7 @@
 [[`BOOST_NO_RVALUE_REFERENCES`][`BOOST_NO_CXX11_RVALUE_REFERENCES`][Boost 1.51][]]
 [[`BOOST_NO_SCOPED_ENUMS`][`BOOST_NO_CXX11_SCOPED_ENUMS`][Boost 1.51][]]
 [[`BOOST_NO_STATIC_ASSERT`][`BOOST_NO_CXX11_STATIC_ASSERT`][Boost 1.51][]]
-[[`BOOST_NO_STD_UNORDERD`][`BOOST_NO_CXX11_STD_UNORDERD`][Boost 1.51][]]
+[[`BOOST_NO_STD_UNORDERED`][`BOOST_NO_CXX11_STD_UNORDERED`][Boost 1.51][]]
 [[`BOOST_NO_UNICODE_LITERALS`][`BOOST_NO_CXX11_UNICODE_LITERALS`][Boost 1.51][]]
 [[`BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX`][`BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX`][Boost 1.51][]]
 [[`BOOST_NO_VARIADIC_TEMPLATES`][`BOOST_NO_CXX11_VARIADIC_TEMPLATES`][Boost 1.51][]]

Modified: branches/release/libs/config/test/all/Jamfile.v2
==============================================================================
--- branches/release/libs/config/test/all/Jamfile.v2 (original)
+++ branches/release/libs/config/test/all/Jamfile.v2 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -1,7 +1,7 @@
 #
 # Regression test Jamfile for boost configuration setup.
 # *** DO NOT EDIT THIS FILE BY HAND ***
-# This file was automatically generated on Tue Jul 10 14:57:46 2012
+# This file was automatically generated on Thu Oct 25 10:14:36 2012
 # by libs/config/tools/generate.cpp
 # Copyright John Maddock.
 # Use, modification and distribution are subject to the
@@ -22,520 +22,520 @@
 run ../limits_test.cpp ../../../test/build//boost_test_exec_monitor ;
 run ../abi/abi_test.cpp ../abi/main.cpp ;
 
-test-suite "BOOST_HAS_TWO_ARG_USE_FACET" :
-[ run ../has_2arg_use_facet_pass.cpp ]
-[ compile-fail ../has_2arg_use_facet_fail.cpp ] ;
-test-suite "BOOST_HAS_BETHREADS" :
-[ run ../has_bethreads_pass.cpp ]
-[ compile-fail ../has_bethreads_fail.cpp ] ;
-test-suite "BOOST_HAS_CLOCK_GETTIME" :
-[ run ../has_clock_gettime_pass.cpp ]
-[ compile-fail ../has_clock_gettime_fail.cpp ] ;
-test-suite "BOOST_HAS_DIRENT_H" :
-[ run ../has_dirent_h_pass.cpp ]
-[ compile-fail ../has_dirent_h_fail.cpp ] ;
-test-suite "BOOST_HAS_EXPM1" :
-[ run ../has_expm1_pass.cpp ]
-[ compile-fail ../has_expm1_fail.cpp ] ;
-test-suite "BOOST_HAS_FTIME" :
-[ run ../has_ftime_pass.cpp ]
-[ compile-fail ../has_ftime_fail.cpp ] ;
-test-suite "BOOST_HAS_GETSYSTEMTIMEASFILETIME" :
-[ run ../has_getsystemtimeasfiletime_pass.cpp ]
-[ compile-fail ../has_getsystemtimeasfiletime_fail.cpp ] ;
-test-suite "BOOST_HAS_GETTIMEOFDAY" :
-[ run ../has_gettimeofday_pass.cpp ]
-[ compile-fail ../has_gettimeofday_fail.cpp ] ;
-test-suite "BOOST_HAS_HASH" :
-[ run ../has_hash_pass.cpp ]
-[ compile-fail ../has_hash_fail.cpp ] ;
-test-suite "BOOST_HAS_LOG1P" :
-[ run ../has_log1p_pass.cpp ]
-[ compile-fail ../has_log1p_fail.cpp ] ;
-test-suite "BOOST_HAS_LONG_LONG" :
-[ run ../has_long_long_pass.cpp ]
-[ compile-fail ../has_long_long_fail.cpp ] ;
-test-suite "BOOST_HAS_MACRO_USE_FACET" :
-[ run ../has_macro_use_facet_pass.cpp ]
-[ compile-fail ../has_macro_use_facet_fail.cpp ] ;
-test-suite "BOOST_HAS_MS_INT64" :
-[ run ../has_ms_int64_pass.cpp ]
-[ compile-fail ../has_ms_int64_fail.cpp ] ;
-test-suite "BOOST_HAS_NANOSLEEP" :
-[ run ../has_nanosleep_pass.cpp ]
-[ compile-fail ../has_nanosleep_fail.cpp ] ;
-test-suite "BOOST_HAS_NL_TYPES_H" :
-[ run ../has_nl_types_h_pass.cpp ]
-[ compile-fail ../has_nl_types_h_fail.cpp ] ;
-test-suite "BOOST_HAS_NRVO" :
-[ run ../has_nrvo_pass.cpp ]
-[ compile-fail ../has_nrvo_fail.cpp ] ;
+test-suite "BOOST_HAS_SCHED_YIELD" :
+[ run ../has_sched_yield_pass.cpp ]
+[ compile-fail ../has_sched_yield_fail.cpp ] ;
+test-suite "BOOST_NO_LIMITS" :
+[ run ../no_limits_pass.cpp ]
+[ compile-fail ../no_limits_fail.cpp ] ;
+test-suite "BOOST_NO_IOSTREAM" :
+[ run ../no_iostream_pass.cpp ]
+[ compile-fail ../no_iostream_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_CHRONO" :
+[ run ../no_cxx11_hdr_chrono_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_chrono_fail.cpp ] ;
+test-suite "BOOST_HAS_UNISTD_H" :
+[ run ../has_unistd_h_pass.cpp ]
+[ compile-fail ../has_unistd_h_fail.cpp ] ;
+test-suite "BOOST_MSVC6_MEMBER_TEMPLATES" :
+[ run ../has_vc6_mem_templ_pass.cpp ]
+[ compile-fail ../has_vc6_mem_templ_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_FUNCTIONAL" :
+[ run ../no_cxx_hdr_functional_pass.cpp ]
+[ compile-fail ../no_cxx_hdr_functional_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_RESULT_OF" :
+[ run ../has_tr1_result_of_pass.cpp ]
+[ compile-fail ../has_tr1_result_of_fail.cpp ] ;
 test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" :
 [ run ../has_part_alloc_pass.cpp ]
 [ compile-fail ../has_part_alloc_fail.cpp ] ;
-test-suite "BOOST_HAS_PTHREADS" :
-[ run ../has_pthreads_pass.cpp ]
-[ compile-fail ../has_pthreads_fail.cpp ] ;
-test-suite "BOOST_HAS_PTHREAD_DELAY_NP" :
-[ run ../has_pthread_delay_np_pass.cpp ]
-[ compile-fail ../has_pthread_delay_np_fail.cpp ] ;
-test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" :
-[ run ../has_pthread_ma_st_pass.cpp ]
-[ compile-fail ../has_pthread_ma_st_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_REGEX" :
+[ run ../has_tr1_regex_pass.cpp ]
+[ compile-fail ../has_tr1_regex_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_FUNCTION" :
+[ run ../has_tr1_function_pass.cpp ]
+[ compile-fail ../has_tr1_function_fail.cpp ] ;
+test-suite "BOOST_NO_CTYPE_FUNCTIONS" :
+[ run ../no_ctype_functions_pass.cpp ]
+[ compile-fail ../no_ctype_functions_fail.cpp ] ;
+test-suite "BOOST_NO_TEMPLATED_IOSTREAMS" :
+[ run ../no_template_streams_pass.cpp ]
+[ compile-fail ../no_template_streams_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_UNICODE_LITERALS" :
+[ run ../no_unicode_literals_pass.cpp ]
+[ compile-fail ../no_unicode_literals_fail.cpp ] ;
 test-suite "BOOST_HAS_PTHREAD_YIELD" :
 [ run ../has_pthread_yield_pass.cpp ]
 [ compile-fail ../has_pthread_yield_fail.cpp ] ;
-test-suite "BOOST_HAS_RVALUE_REFS" :
-[ run ../has_rvalue_refs_pass.cpp ]
-[ compile-fail ../has_rvalue_refs_fail.cpp ] ;
-test-suite "BOOST_HAS_SCHED_YIELD" :
-[ run ../has_sched_yield_pass.cpp ]
-[ compile-fail ../has_sched_yield_fail.cpp ] ;
-test-suite "BOOST_HAS_SGI_TYPE_TRAITS" :
-[ run ../has_sgi_type_traits_pass.cpp ]
-[ compile-fail ../has_sgi_type_traits_fail.cpp ] ;
-test-suite "BOOST_HAS_SIGACTION" :
-[ run ../has_sigaction_pass.cpp ]
-[ compile-fail ../has_sigaction_fail.cpp ] ;
-test-suite "BOOST_HAS_SLIST" :
-[ run ../has_slist_pass.cpp ]
-[ compile-fail ../has_slist_fail.cpp ] ;
+test-suite "BOOST_NO_TYPENAME_WITH_CTOR" :
+[ run ../no_typename_with_ctor_pass.cpp ]
+[ compile-fail ../no_typename_with_ctor_fail.cpp ] ;
+test-suite "BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS" :
+[ run ../no_array_type_spec_pass.cpp ]
+[ compile-fail ../no_array_type_spec_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_RATIO" :
+[ run ../no_cxx11_hdr_ratio_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_ratio_fail.cpp ] ;
+test-suite "BOOST_NO_IOSFWD" :
+[ run ../no_iosfwd_pass.cpp ]
+[ compile-fail ../no_iosfwd_fail.cpp ] ;
+test-suite "BOOST_NO_STD_ITERATOR_TRAITS" :
+[ run ../no_std_iter_traits_pass.cpp ]
+[ compile-fail ../no_std_iter_traits_fail.cpp ] ;
+test-suite "BOOST_NO_STD_DISTANCE" :
+[ run ../no_std_distance_pass.cpp ]
+[ compile-fail ../no_std_distance_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_ARRAY" :
+[ run ../no_cxx11_hdr_array_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_array_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_UNORDERED_MAP" :
+[ run ../no_cxx11_hdr_unordered_map_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_unordered_map_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_RANDOM" :
+[ run ../no_cxx11_hdr_random_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_random_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_NUMERIC_LIMITS" :
+[ run ../no_cxx11_numeric_limits_pass.cpp ]
+[ compile-fail ../no_cxx11_numeric_limits_fail.cpp ] ;
 test-suite "BOOST_HAS_STATIC_ASSERT" :
 [ run ../has_static_assert_pass.cpp ]
 [ compile-fail ../has_static_assert_fail.cpp ] ;
-test-suite "BOOST_HAS_STDINT_H" :
-[ run ../has_stdint_h_pass.cpp ]
-[ compile-fail ../has_stdint_h_fail.cpp ] ;
+test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" :
+[ run ../no_priv_aggregate_pass.cpp ]
+[ compile-fail ../no_priv_aggregate_fail.cpp ] ;
+test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" :
+[ run ../no_func_tmp_order_pass.cpp ]
+[ compile-fail ../no_func_tmp_order_fail.cpp ] ;
+test-suite "BOOST_HAS_CLOCK_GETTIME" :
+[ run ../has_clock_gettime_pass.cpp ]
+[ compile-fail ../has_clock_gettime_fail.cpp ] ;
+test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" :
+[ run ../no_mem_tem_keyword_pass.cpp ]
+[ compile-fail ../no_mem_tem_keyword_fail.cpp ] ;
+test-suite "BOOST_HAS_SIGACTION" :
+[ run ../has_sigaction_pass.cpp ]
+[ compile-fail ../has_sigaction_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_VARIADIC_MACROS" :
+[ run ../no_variadic_macros_pass.cpp ]
+[ compile-fail ../no_variadic_macros_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_INITIALIZER_LIST" :
+[ run ../no_cxx11_hdr_initializer_list_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_initializer_list_fail.cpp ] ;
+test-suite "BOOST_HAS_RVALUE_REFS" :
+[ run ../has_rvalue_refs_pass.cpp ]
+[ compile-fail ../has_rvalue_refs_fail.cpp ] ;
+test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
+[ run ../no_template_template_pass.cpp ]
+[ compile-fail ../no_template_template_fail.cpp ] ;
+test-suite "BOOST_HAS_NANOSLEEP" :
+[ run ../has_nanosleep_pass.cpp ]
+[ compile-fail ../has_nanosleep_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_FORWARD_LIST" :
+[ run ../no_cxx11_hdr_forward_list_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_forward_list_fail.cpp ] ;
+test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" :
+[ run ../no_iter_construct_pass.cpp ]
+[ compile-fail ../no_iter_construct_fail.cpp ] ;
+test-suite "BOOST_MSVC_STD_ITERATOR" :
+[ run ../has_vc_iterator_pass.cpp ]
+[ compile-fail ../has_vc_iterator_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_HASH" :
+[ run ../has_tr1_hash_pass.cpp ]
+[ compile-fail ../has_tr1_hash_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_DEFAULTED_FUNCTIONS" :
+[ run ../no_defaulted_functions_pass.cpp ]
+[ compile-fail ../no_defaulted_functions_fail.cpp ] ;
+test-suite "BOOST_NO_SFINAE" :
+[ run ../no_sfinae_pass.cpp ]
+[ compile-fail ../no_sfinae_fail.cpp ] ;
+test-suite "BOOST_NO_STRINGSTREAM" :
+[ run ../no_sstream_pass.cpp ]
+[ compile-fail ../no_sstream_fail.cpp ] ;
+test-suite "BOOST_HAS_INT128" :
+[ run ../has_int128_pass.cpp ]
+[ compile-fail ../has_int128_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_RANGE_BASED_FOR" :
+[ run ../no_range_based_for_pass.cpp ]
+[ compile-fail ../no_range_based_for_fail.cpp ] ;
 test-suite "BOOST_HAS_STLP_USE_FACET" :
 [ run ../has_stlp_use_facet_pass.cpp ]
 [ compile-fail ../has_stlp_use_facet_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_ARRAY" :
-[ run ../has_tr1_array_pass.cpp ]
-[ compile-fail ../has_tr1_array_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_BIND" :
-[ run ../has_tr1_bind_pass.cpp ]
-[ compile-fail ../has_tr1_bind_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_VARIADIC_TEMPLATES" :
+[ run ../no_variadic_templates_pass.cpp ]
+[ compile-fail ../no_variadic_templates_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_NOEXCEPT" :
+[ run ../no_noexcept_pass.cpp ]
+[ compile-fail ../no_noexcept_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS" :
+[ run ../no_auto_multidecl_pass.cpp ]
+[ compile-fail ../no_auto_multidecl_fail.cpp ] ;
+test-suite "BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS" :
+[ run ../no_part_spec_def_args_pass.cpp ]
+[ compile-fail ../no_part_spec_def_args_fail.cpp ] ;
+test-suite "BOOST_HAS_GETSYSTEMTIMEASFILETIME" :
+[ run ../has_getsystemtimeasfiletime_pass.cpp ]
+[ compile-fail ../has_getsystemtimeasfiletime_fail.cpp ] ;
+test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
+[ run ../no_using_breaks_adl_pass.cpp ]
+[ compile-fail ../no_using_breaks_adl_fail.cpp ] ;
+test-suite "BOOST_NO_STD_LOCALE" :
+[ run ../no_std_locale_pass.cpp ]
+[ compile-fail ../no_std_locale_fail.cpp ] ;
+test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" :
+[ run ../no_ll_limits_pass.cpp ]
+[ compile-fail ../no_ll_limits_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX" :
+[ run ../no_unified_init_pass.cpp ]
+[ compile-fail ../no_unified_init_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS" :
+[ run ../no_explicit_cvt_ops_pass.cpp ]
+[ compile-fail ../no_explicit_cvt_ops_fail.cpp ] ;
+test-suite "BOOST_HAS_FTIME" :
+[ run ../has_ftime_pass.cpp ]
+[ compile-fail ../has_ftime_fail.cpp ] ;
+test-suite "BOOST_NO_NESTED_FRIENDSHIP" :
+[ run ../no_nested_friendship_pass.cpp ]
+[ compile-fail ../no_nested_friendship_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_ALLOCATOR" :
+[ run ../no_cxx11_allocator_pass.cpp ]
+[ compile-fail ../no_cxx11_allocator_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_TYPE_TRAITS" :
+[ run ../no_cxx11_hdr_type_traits_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_type_traits_fail.cpp ] ;
+test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" :
+[ run ../has_pthread_ma_st_pass.cpp ]
+[ compile-fail ../has_pthread_ma_st_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_FUTURE" :
+[ run ../no_cxx11_hdr_future_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_future_fail.cpp ] ;
+test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" :
+[ run ../no_mem_func_spec_pass.cpp ]
+[ compile-fail ../no_mem_func_spec_fail.cpp ] ;
 test-suite "BOOST_HAS_TR1_COMPLEX_OVERLOADS" :
 [ run ../has_tr1_complex_over_pass.cpp ]
 [ compile-fail ../has_tr1_complex_over_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG" :
-[ run ../has_tr1_complex_trig_pass.cpp ]
-[ compile-fail ../has_tr1_complex_trig_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_FUNCTION" :
-[ run ../has_tr1_function_pass.cpp ]
-[ compile-fail ../has_tr1_function_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_HASH" :
-[ run ../has_tr1_hash_pass.cpp ]
-[ compile-fail ../has_tr1_hash_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_MEM_FN" :
-[ run ../has_tr1_mem_fn_pass.cpp ]
-[ compile-fail ../has_tr1_mem_fn_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_RANDOM" :
-[ run ../has_tr1_random_pass.cpp ]
-[ compile-fail ../has_tr1_random_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_REFERENCE_WRAPPER" :
-[ run ../has_tr1_ref_wrap_pass.cpp ]
-[ compile-fail ../has_tr1_ref_wrap_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_REGEX" :
-[ run ../has_tr1_regex_pass.cpp ]
-[ compile-fail ../has_tr1_regex_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_RESULT_OF" :
-[ run ../has_tr1_result_of_pass.cpp ]
-[ compile-fail ../has_tr1_result_of_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_SHARED_PTR" :
-[ run ../has_tr1_shared_ptr_pass.cpp ]
-[ compile-fail ../has_tr1_shared_ptr_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_TUPLE" :
-[ run ../has_tr1_tuple_pass.cpp ]
-[ compile-fail ../has_tr1_tuple_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_TYPE_TRAITS" :
-[ run ../has_tr1_type_traits_pass.cpp ]
-[ compile-fail ../has_tr1_type_traits_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_UNORDERED_MAP" :
-[ run ../has_tr1_unordered_map_pass.cpp ]
-[ compile-fail ../has_tr1_unordered_map_fail.cpp ] ;
-test-suite "BOOST_HAS_TR1_UNORDERED_SET" :
-[ run ../has_tr1_unordered_set_pass.cpp ]
-[ compile-fail ../has_tr1_unordered_set_fail.cpp ] ;
+test-suite "BOOST_NO_STD_ITERATOR" :
+[ run ../no_std_iterator_pass.cpp ]
+[ compile-fail ../no_std_iterator_fail.cpp ] ;
+test-suite "BOOST_NO_EXCEPTIONS" :
+[ run ../no_exceptions_pass.cpp ]
+[ compile-fail ../no_exceptions_fail.cpp ] ;
+test-suite "BOOST_HAS_BETHREADS" :
+[ run ../has_bethreads_pass.cpp ]
+[ compile-fail ../has_bethreads_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_CONDITION_VARIABLE" :
+[ run ../no_cxx11_hdr_condition_variable_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_condition_variable_fail.cpp ] ;
+test-suite "BOOST_NO_INTRINSIC_WCHAR_T" :
+[ run ../no_wchar_t_pass.cpp ]
+[ compile-fail ../no_wchar_t_fail.cpp ] ;
+test-suite "BOOST_NO_STD_ALLOCATOR" :
+[ run ../no_std_allocator_pass.cpp ]
+[ compile-fail ../no_std_allocator_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS" :
+[ run ../no_function_template_default_args_pass.cpp ]
+[ compile-fail ../no_function_template_default_args_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_TEMPLATE_ALIASES" :
+[ run ../no_template_aliases_pass.cpp ]
+[ compile-fail ../no_template_aliases_fail.cpp ] ;
+test-suite "BOOST_HAS_SLIST" :
+[ run ../has_slist_pass.cpp ]
+[ compile-fail ../has_slist_fail.cpp ] ;
+test-suite "BOOST_HAS_DIRENT_H" :
+[ run ../has_dirent_h_pass.cpp ]
+[ compile-fail ../has_dirent_h_fail.cpp ] ;
+test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" :
+[ run ../no_cv_void_spec_pass.cpp ]
+[ compile-fail ../no_cv_void_spec_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_SMART_PTR" :
+[ run ../no_cxx11_smart_ptr_pass.cpp ]
+[ compile-fail ../no_cxx11_smart_ptr_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_ARRAY" :
+[ run ../has_tr1_array_pass.cpp ]
+[ compile-fail ../has_tr1_array_fail.cpp ] ;
 test-suite "BOOST_HAS_TR1_UTILITY" :
 [ run ../has_tr1_utility_pass.cpp ]
 [ compile-fail ../has_tr1_utility_fail.cpp ] ;
-test-suite "BOOST_HAS_UNISTD_H" :
-[ run ../has_unistd_h_pass.cpp ]
-[ compile-fail ../has_unistd_h_fail.cpp ] ;
-test-suite "BOOST_HAS_VARIADIC_TMPL" :
-[ run ../has_variadic_tmpl_pass.cpp ]
-[ compile-fail ../has_variadic_tmpl_fail.cpp ] ;
-test-suite "BOOST_MSVC6_MEMBER_TEMPLATES" :
-[ run ../has_vc6_mem_templ_pass.cpp ]
-[ compile-fail ../has_vc6_mem_templ_fail.cpp ] ;
-test-suite "BOOST_MSVC_STD_ITERATOR" :
-[ run ../has_vc_iterator_pass.cpp ]
-[ compile-fail ../has_vc_iterator_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_TUPLE" :
+[ run ../has_tr1_tuple_pass.cpp ]
+[ compile-fail ../has_tr1_tuple_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_THREAD" :
+[ run ../no_cxx11_hdr_thread_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_thread_fail.cpp ] ;
 test-suite "BOOST_HAS_WINTHREADS" :
 [ run ../has_winthreads_pass.cpp ]
 [ compile-fail ../has_winthreads_fail.cpp ] ;
-test-suite "BOOST_NO_ADL_BARRIER" :
-[ run ../no_adl_barrier_pass.cpp ]
-[ compile-fail ../no_adl_barrier_fail.cpp ] ;
-test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" :
-[ run ../no_arg_dep_lookup_pass.cpp ]
-[ compile-fail ../no_arg_dep_lookup_fail.cpp ] ;
-test-suite "BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS" :
-[ run ../no_array_type_spec_pass.cpp ]
-[ compile-fail ../no_array_type_spec_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_AUTO_DECLARATIONS" :
-[ run ../no_auto_declarations_pass.cpp ]
-[ compile-fail ../no_auto_declarations_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS" :
-[ run ../no_auto_multidecl_pass.cpp ]
-[ compile-fail ../no_auto_multidecl_fail.cpp ] ;
 test-suite "BOOST_NO_AUTO_PTR" :
 [ run ../no_auto_ptr_pass.cpp ]
 [ compile-fail ../no_auto_ptr_fail.cpp ] ;
-test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" :
-[ run ../no_bcb_partial_spec_pass.cpp ]
-[ compile-fail ../no_bcb_partial_spec_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_CHAR16_T" :
-[ run ../no_char16_t_pass.cpp ]
-[ compile-fail ../no_char16_t_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_CHAR32_T" :
-[ run ../no_char32_t_pass.cpp ]
-[ compile-fail ../no_char32_t_fail.cpp ] ;
-test-suite "BOOST_NO_COMPLETE_VALUE_INITIALIZATION" :
-[ run ../no_com_value_init_pass.cpp ]
-[ compile-fail ../no_com_value_init_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_CONSTEXPR" :
-[ run ../no_constexpr_pass.cpp ]
-[ compile-fail ../no_constexpr_fail.cpp ] ;
-test-suite "BOOST_NO_CTYPE_FUNCTIONS" :
-[ run ../no_ctype_functions_pass.cpp ]
-[ compile-fail ../no_ctype_functions_fail.cpp ] ;
-test-suite "BOOST_NO_CV_SPECIALIZATIONS" :
-[ run ../no_cv_spec_pass.cpp ]
-[ compile-fail ../no_cv_spec_fail.cpp ] ;
-test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" :
-[ run ../no_cv_void_spec_pass.cpp ]
-[ compile-fail ../no_cv_void_spec_fail.cpp ] ;
-test-suite "BOOST_NO_CWCHAR" :
-[ run ../no_cwchar_pass.cpp ]
-[ compile-fail ../no_cwchar_fail.cpp ] ;
-test-suite "BOOST_NO_CWCTYPE" :
-[ run ../no_cwctype_pass.cpp ]
-[ compile-fail ../no_cwctype_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_ALLOCATOR" :
-[ run ../no_cxx11_allocator_pass.cpp ]
-[ compile-fail ../no_cxx11_allocator_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_BIND" :
+[ run ../has_tr1_bind_pass.cpp ]
+[ compile-fail ../has_tr1_bind_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_RAW_LITERALS" :
+[ run ../no_raw_literals_pass.cpp ]
+[ compile-fail ../no_raw_literals_fail.cpp ] ;
+test-suite "BOOST_NO_STD_WSTRING" :
+[ run ../no_std_wstring_pass.cpp ]
+[ compile-fail ../no_std_wstring_fail.cpp ] ;
+test-suite "BOOST_NO_STD_TYPEINFO" :
+[ run ../no_std_typeinfo_pass.cpp ]
+[ compile-fail ../no_std_typeinfo_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_DECLTYPE_N3276" :
+[ run ../no_decltype_n3276_pass.cpp ]
+[ compile-fail ../no_decltype_n3276_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_ATOMIC_SMART_PTR" :
 [ run ../no_cxx11_atomic_sp_pass.cpp ]
 [ compile-fail ../no_cxx11_atomic_sp_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_ARRAY" :
-[ run ../no_cxx11_hdr_array_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_array_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_CHRONO" :
-[ run ../no_cxx11_hdr_chrono_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_chrono_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_CODECVT" :
-[ run ../no_cxx11_hdr_codecvt_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_codecvt_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_CONDITION_VARIABLE" :
-[ run ../no_cxx11_hdr_condition_variable_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_condition_variable_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_FORWARD_LIST" :
-[ run ../no_cxx11_hdr_forward_list_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_forward_list_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_FUTURE" :
-[ run ../no_cxx11_hdr_future_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_future_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_INITIALIZER_LIST" :
-[ run ../no_cxx11_hdr_initializer_list_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_initializer_list_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_MUTEX" :
-[ run ../no_cxx11_hdr_mutex_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_mutex_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_RANDOM" :
-[ run ../no_cxx11_hdr_random_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_random_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_RATIO" :
-[ run ../no_cxx11_hdr_ratio_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_ratio_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_REGEX" :
-[ run ../no_cxx11_hdr_regex_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_regex_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_RVALUE_REFERENCES" :
+[ run ../no_rvalue_references_pass.cpp ]
+[ compile-fail ../no_rvalue_references_fail.cpp ] ;
+test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" :
+[ run ../no_dep_nested_class_pass.cpp ]
+[ compile-fail ../no_dep_nested_class_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_HDR_SYSTEM_ERROR" :
 [ run ../no_cxx11_hdr_system_error_pass.cpp ]
 [ compile-fail ../no_cxx11_hdr_system_error_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_THREAD" :
-[ run ../no_cxx11_hdr_thread_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_thread_fail.cpp ] ;
+test-suite "BOOST_HAS_MS_INT64" :
+[ run ../has_ms_int64_pass.cpp ]
+[ compile-fail ../has_ms_int64_fail.cpp ] ;
+test-suite "BOOST_HAS_LOG1P" :
+[ run ../has_log1p_pass.cpp ]
+[ compile-fail ../has_log1p_fail.cpp ] ;
+test-suite "BOOST_HAS_STDINT_H" :
+[ run ../has_stdint_h_pass.cpp ]
+[ compile-fail ../has_stdint_h_fail.cpp ] ;
+test-suite "BOOST_NO_LONG_LONG" :
+[ run ../no_long_long_pass.cpp ]
+[ compile-fail ../no_long_long_fail.cpp ] ;
+test-suite "BOOST_NO_TYPEID" :
+[ run ../no_typeid_pass.cpp ]
+[ compile-fail ../no_typeid_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_HDR_TUPLE" :
 [ run ../no_cxx11_hdr_tuple_pass.cpp ]
 [ compile-fail ../no_cxx11_hdr_tuple_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_TYPEINDEX" :
-[ run ../no_cxx11_hdr_typeindex_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_typeindex_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_TYPE_TRAITS" :
-[ run ../no_cxx11_hdr_type_traits_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_type_traits_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_UNORDERED_MAP" :
-[ run ../no_cxx11_hdr_unordered_map_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_unordered_map_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_UNORDERED_SET" :
-[ run ../no_cxx11_hdr_unordered_set_pass.cpp ]
-[ compile-fail ../no_cxx11_hdr_unordered_set_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_SMART_PTR" :
-[ run ../no_cxx11_smart_ptr_pass.cpp ]
-[ compile-fail ../no_cxx11_smart_ptr_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_HDR_FUNCTIONAL" :
-[ run ../no_cxx_hdr_functional_pass.cpp ]
-[ compile-fail ../no_cxx_hdr_functional_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_DECLTYPE" :
-[ run ../no_decltype_pass.cpp ]
-[ compile-fail ../no_decltype_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_DECLTYPE_N3276" :
-[ run ../no_decltype_n3276_pass.cpp ]
-[ compile-fail ../no_decltype_n3276_fail.cpp ] ;
-test-suite "BOOST_DEDUCED_TYPENAME" :
-[ run ../no_ded_typename_pass.cpp ]
-[ compile-fail ../no_ded_typename_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_DEFAULTED_FUNCTIONS" :
-[ run ../no_defaulted_functions_pass.cpp ]
-[ compile-fail ../no_defaulted_functions_fail.cpp ] ;
+test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" :
+[ run ../no_two_phase_lookup_pass.cpp ]
+[ compile-fail ../no_two_phase_lookup_fail.cpp ] ;
+test-suite "BOOST_NO_SFINAE_EXPR" :
+[ run ../no_sfinae_expr_pass.cpp ]
+[ compile-fail ../no_sfinae_expr_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_RANDOM" :
+[ run ../has_tr1_random_pass.cpp ]
+[ compile-fail ../has_tr1_random_fail.cpp ] ;
+test-suite "BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS" :
+[ run ../no_function_type_spec_pass.cpp ]
+[ compile-fail ../no_function_type_spec_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_DELETED_FUNCTIONS" :
 [ run ../no_deleted_functions_pass.cpp ]
 [ compile-fail ../no_deleted_functions_fail.cpp ] ;
-test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" :
-[ run ../no_dep_nested_class_pass.cpp ]
-[ compile-fail ../no_dep_nested_class_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG" :
+[ run ../has_tr1_complex_trig_pass.cpp ]
+[ compile-fail ../has_tr1_complex_trig_fail.cpp ] ;
+test-suite "BOOST_HAS_MACRO_USE_FACET" :
+[ run ../has_macro_use_facet_pass.cpp ]
+[ compile-fail ../has_macro_use_facet_fail.cpp ] ;
+test-suite "BOOST_NO_RTTI" :
+[ run ../no_rtti_pass.cpp ]
+[ compile-fail ../no_rtti_fail.cpp ] ;
+test-suite "BOOST_HAS_EXPM1" :
+[ run ../has_expm1_pass.cpp ]
+[ compile-fail ../has_expm1_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_CHAR16_T" :
+[ run ../no_char16_t_pass.cpp ]
+[ compile-fail ../no_char16_t_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_AUTO_DECLARATIONS" :
+[ run ../no_auto_declarations_pass.cpp ]
+[ compile-fail ../no_auto_declarations_fail.cpp ] ;
+test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" :
+[ run ../no_mem_templ_frnds_pass.cpp ]
+[ compile-fail ../no_mem_templ_frnds_fail.cpp ] ;
+test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" :
+[ run ../no_mem_tem_pnts_pass.cpp ]
+[ compile-fail ../no_mem_tem_pnts_fail.cpp ] ;
+test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" :
+[ run ../no_inline_memb_init_pass.cpp ]
+[ compile-fail ../no_inline_memb_init_fail.cpp ] ;
+test-suite "BOOST_NO_SWPRINTF" :
+[ run ../no_swprintf_pass.cpp ]
+[ compile-fail ../no_swprintf_fail.cpp ] ;
+test-suite "BOOST_NO_STD_USE_FACET" :
+[ run ../no_std_use_facet_pass.cpp ]
+[ compile-fail ../no_std_use_facet_fail.cpp ] ;
+test-suite "BOOST_HAS_TWO_ARG_USE_FACET" :
+[ run ../has_2arg_use_facet_pass.cpp ]
+[ compile-fail ../has_2arg_use_facet_fail.cpp ] ;
+test-suite "BOOST_HAS_NL_TYPES_H" :
+[ run ../has_nl_types_h_pass.cpp ]
+[ compile-fail ../has_nl_types_h_fail.cpp ] ;
+test-suite "BOOST_NO_MEMBER_TEMPLATES" :
+[ run ../no_mem_templates_pass.cpp ]
+[ compile-fail ../no_mem_templates_fail.cpp ] ;
+test-suite "BOOST_NO_CWCHAR" :
+[ run ../no_cwchar_pass.cpp ]
+[ compile-fail ../no_cwchar_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_CONSTEXPR" :
+[ run ../no_constexpr_pass.cpp ]
+[ compile-fail ../no_constexpr_fail.cpp ] ;
+test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" :
+[ run ../no_std_oi_assign_pass.cpp ]
+[ compile-fail ../no_std_oi_assign_fail.cpp ] ;
+test-suite "BOOST_NO_STDC_NAMESPACE" :
+[ run ../no_stdc_namespace_pass.cpp ]
+[ compile-fail ../no_stdc_namespace_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_NULLPTR" :
+[ run ../no_nullptr_pass.cpp ]
+[ compile-fail ../no_nullptr_fail.cpp ] ;
+test-suite "BOOST_HAS_HASH" :
+[ run ../has_hash_pass.cpp ]
+[ compile-fail ../has_hash_fail.cpp ] ;
+test-suite "BOOST_HAS_LONG_LONG" :
+[ run ../has_long_long_pass.cpp ]
+[ compile-fail ../has_long_long_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_TYPE_TRAITS" :
+[ run ../has_tr1_type_traits_pass.cpp ]
+[ compile-fail ../has_tr1_type_traits_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_UNORDERED_SET" :
+[ run ../no_cxx11_hdr_unordered_set_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_unordered_set_fail.cpp ] ;
+test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" :
+[ run ../no_bcb_partial_spec_pass.cpp ]
+[ compile-fail ../no_bcb_partial_spec_fail.cpp ] ;
+test-suite "BOOST_NO_STD_WSTREAMBUF" :
+[ run ../no_std_wstreambuf_pass.cpp ]
+[ compile-fail ../no_std_wstreambuf_fail.cpp ] ;
 test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" :
 [ run ../no_dep_val_param_pass.cpp ]
 [ compile-fail ../no_dep_val_param_fail.cpp ] ;
-test-suite "BOOST_NO_EXCEPTIONS" :
-[ run ../no_exceptions_pass.cpp ]
-[ compile-fail ../no_exceptions_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_TYPEINDEX" :
+[ run ../no_cxx11_hdr_typeindex_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_typeindex_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_SHARED_PTR" :
+[ run ../has_tr1_shared_ptr_pass.cpp ]
+[ compile-fail ../has_tr1_shared_ptr_fail.cpp ] ;
+test-suite "BOOST_HAS_NRVO" :
+[ run ../has_nrvo_pass.cpp ]
+[ compile-fail ../has_nrvo_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_CHAR32_T" :
+[ run ../no_char32_t_pass.cpp ]
+[ compile-fail ../no_char32_t_fail.cpp ] ;
+test-suite "BOOST_NO_COMPLETE_VALUE_INITIALIZATION" :
+[ run ../no_com_value_init_pass.cpp ]
+[ compile-fail ../no_com_value_init_fail.cpp ] ;
+test-suite "BOOST_DEDUCED_TYPENAME" :
+[ run ../no_ded_typename_pass.cpp ]
+[ compile-fail ../no_ded_typename_fail.cpp ] ;
 test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" :
 [ run ../no_excep_std_pass.cpp ]
 [ compile-fail ../no_excep_std_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS" :
-[ run ../no_explicit_cvt_ops_pass.cpp ]
-[ compile-fail ../no_explicit_cvt_ops_fail.cpp ] ;
-test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" :
-[ run ../no_exp_func_tem_arg_pass.cpp ]
-[ compile-fail ../no_exp_func_tem_arg_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_EXTERN_TEMPLATE" :
-[ run ../no_extern_template_pass.cpp ]
-[ compile-fail ../no_extern_template_fail.cpp ] ;
-test-suite "BOOST_NO_FENV_H" :
-[ run ../no_fenv_h_pass.cpp ]
-[ compile-fail ../no_fenv_h_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS" :
-[ run ../no_function_template_default_args_pass.cpp ]
-[ compile-fail ../no_function_template_default_args_fail.cpp ] ;
-test-suite "BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS" :
-[ run ../no_function_type_spec_pass.cpp ]
-[ compile-fail ../no_function_type_spec_fail.cpp ] ;
-test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" :
-[ run ../no_func_tmp_order_pass.cpp ]
-[ compile-fail ../no_func_tmp_order_fail.cpp ] ;
-test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" :
-[ run ../no_i64_limits_pass.cpp ]
-[ compile-fail ../no_i64_limits_fail.cpp ] ;
-test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" :
-[ run ../no_inline_memb_init_pass.cpp ]
-[ compile-fail ../no_inline_memb_init_fail.cpp ] ;
-test-suite "BOOST_NO_INTEGRAL_INT64_T" :
-[ run ../no_integral_int64_t_pass.cpp ]
-[ compile-fail ../no_integral_int64_t_fail.cpp ] ;
-test-suite "BOOST_NO_IOSFWD" :
-[ run ../no_iosfwd_pass.cpp ]
-[ compile-fail ../no_iosfwd_fail.cpp ] ;
-test-suite "BOOST_NO_IOSTREAM" :
-[ run ../no_iostream_pass.cpp ]
-[ compile-fail ../no_iostream_fail.cpp ] ;
-test-suite "BOOST_NO_IS_ABSTRACT" :
-[ run ../no_is_abstract_pass.cpp ]
-[ compile-fail ../no_is_abstract_fail.cpp ] ;
-test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" :
-[ run ../no_iter_construct_pass.cpp ]
-[ compile-fail ../no_iter_construct_fail.cpp ] ;
+test-suite "BOOST_NO_STD_MIN_MAX" :
+[ run ../no_std_min_max_pass.cpp ]
+[ compile-fail ../no_std_min_max_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_STATIC_ASSERT" :
+[ run ../no_static_assert_pass.cpp ]
+[ compile-fail ../no_static_assert_fail.cpp ] ;
+test-suite "BOOST_HAS_PTHREADS" :
+[ run ../has_pthreads_pass.cpp ]
+[ compile-fail ../has_pthreads_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_LAMBDAS" :
 [ run ../no_lambdas_pass.cpp ]
 [ compile-fail ../no_lambdas_fail.cpp ] ;
-test-suite "BOOST_NO_LIMITS" :
-[ run ../no_limits_pass.cpp ]
-[ compile-fail ../no_limits_fail.cpp ] ;
-test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" :
-[ run ../no_limits_const_exp_pass.cpp ]
-[ compile-fail ../no_limits_const_exp_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_NUMERIC_LIMITS" :
-[ run ../no_cxx11_numeric_limits_pass.cpp ]
-[ compile-fail ../no_cxx11_numeric_limits_fail.cpp ] ;
-test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" :
-[ run ../no_ll_limits_pass.cpp ]
-[ compile-fail ../no_ll_limits_fail.cpp ] ;
-test-suite "BOOST_NO_LONG_LONG" :
-[ run ../no_long_long_pass.cpp ]
-[ compile-fail ../no_long_long_fail.cpp ] ;
-test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" :
-[ run ../no_mem_func_spec_pass.cpp ]
-[ compile-fail ../no_mem_func_spec_fail.cpp ] ;
-test-suite "BOOST_NO_MEMBER_TEMPLATES" :
-[ run ../no_mem_templates_pass.cpp ]
-[ compile-fail ../no_mem_templates_fail.cpp ] ;
-test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" :
-[ run ../no_mem_templ_frnds_pass.cpp ]
-[ compile-fail ../no_mem_templ_frnds_fail.cpp ] ;
-test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" :
-[ run ../no_mem_tem_keyword_pass.cpp ]
-[ compile-fail ../no_mem_tem_keyword_fail.cpp ] ;
-test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" :
-[ run ../no_mem_tem_pnts_pass.cpp ]
-[ compile-fail ../no_mem_tem_pnts_fail.cpp ] ;
-test-suite "BOOST_NO_NESTED_FRIENDSHIP" :
-[ run ../no_nested_friendship_pass.cpp ]
-[ compile-fail ../no_nested_friendship_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_NOEXCEPT" :
-[ run ../no_noexcept_pass.cpp ]
-[ compile-fail ../no_noexcept_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_NULLPTR" :
-[ run ../no_nullptr_pass.cpp ]
-[ compile-fail ../no_nullptr_fail.cpp ] ;
-test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" :
-[ run ../no_ops_in_namespace_pass.cpp ]
-[ compile-fail ../no_ops_in_namespace_fail.cpp ] ;
-test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" :
-[ run ../no_partial_spec_pass.cpp ]
-[ compile-fail ../no_partial_spec_fail.cpp ] ;
-test-suite "BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS" :
-[ run ../no_part_spec_def_args_pass.cpp ]
-[ compile-fail ../no_part_spec_def_args_fail.cpp ] ;
-test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" :
-[ run ../no_priv_aggregate_pass.cpp ]
-[ compile-fail ../no_priv_aggregate_fail.cpp ] ;
-test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" :
-[ run ../no_ptr_mem_const_pass.cpp ]
-[ compile-fail ../no_ptr_mem_const_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_RANGE_BASED_FOR" :
-[ run ../no_range_based_for_pass.cpp ]
-[ compile-fail ../no_range_based_for_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_RAW_LITERALS" :
-[ run ../no_raw_literals_pass.cpp ]
-[ compile-fail ../no_raw_literals_fail.cpp ] ;
-test-suite "BOOST_NO_UNREACHABLE_RETURN_DETECTION" :
-[ run ../no_ret_det_pass.cpp ]
-[ compile-fail ../no_ret_det_fail.cpp ] ;
-test-suite "BOOST_NO_RTTI" :
-[ run ../no_rtti_pass.cpp ]
-[ compile-fail ../no_rtti_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_RVALUE_REFERENCES" :
-[ run ../no_rvalue_references_pass.cpp ]
-[ compile-fail ../no_rvalue_references_fail.cpp ] ;
+test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" :
+[ run ../no_arg_dep_lookup_pass.cpp ]
+[ compile-fail ../no_arg_dep_lookup_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_SCOPED_ENUMS" :
 [ run ../no_scoped_enums_pass.cpp ]
 [ compile-fail ../no_scoped_enums_fail.cpp ] ;
-test-suite "BOOST_NO_SFINAE" :
-[ run ../no_sfinae_pass.cpp ]
-[ compile-fail ../no_sfinae_fail.cpp ] ;
-test-suite "BOOST_NO_SFINAE_EXPR" :
-[ run ../no_sfinae_expr_pass.cpp ]
-[ compile-fail ../no_sfinae_expr_fail.cpp ] ;
-test-suite "BOOST_NO_STRINGSTREAM" :
-[ run ../no_sstream_pass.cpp ]
-[ compile-fail ../no_sstream_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_STATIC_ASSERT" :
-[ run ../no_static_assert_pass.cpp ]
-[ compile-fail ../no_static_assert_fail.cpp ] ;
-test-suite "BOOST_NO_STDC_NAMESPACE" :
-[ run ../no_stdc_namespace_pass.cpp ]
-[ compile-fail ../no_stdc_namespace_fail.cpp ] ;
-test-suite "BOOST_NO_STD_ALLOCATOR" :
-[ run ../no_std_allocator_pass.cpp ]
-[ compile-fail ../no_std_allocator_fail.cpp ] ;
-test-suite "BOOST_NO_STD_DISTANCE" :
-[ run ../no_std_distance_pass.cpp ]
-[ compile-fail ../no_std_distance_fail.cpp ] ;
-test-suite "BOOST_NO_STD_ITERATOR" :
-[ run ../no_std_iterator_pass.cpp ]
-[ compile-fail ../no_std_iterator_fail.cpp ] ;
-test-suite "BOOST_NO_STD_ITERATOR_TRAITS" :
-[ run ../no_std_iter_traits_pass.cpp ]
-[ compile-fail ../no_std_iter_traits_fail.cpp ] ;
-test-suite "BOOST_NO_STD_LOCALE" :
-[ run ../no_std_locale_pass.cpp ]
-[ compile-fail ../no_std_locale_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_EXTERN_TEMPLATE" :
+[ run ../no_extern_template_pass.cpp ]
+[ compile-fail ../no_extern_template_fail.cpp ] ;
+test-suite "BOOST_NO_INTEGRAL_INT64_T" :
+[ run ../no_integral_int64_t_pass.cpp ]
+[ compile-fail ../no_integral_int64_t_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_CODECVT" :
+[ run ../no_cxx11_hdr_codecvt_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_codecvt_fail.cpp ] ;
+test-suite "BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE" :
+[ run ../no_using_decl_overld_pass.cpp ]
+[ compile-fail ../no_using_decl_overld_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_UNORDERED_SET" :
+[ run ../has_tr1_unordered_set_pass.cpp ]
+[ compile-fail ../has_tr1_unordered_set_fail.cpp ] ;
+test-suite "BOOST_NO_CWCTYPE" :
+[ run ../no_cwctype_pass.cpp ]
+[ compile-fail ../no_cwctype_fail.cpp ] ;
+test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" :
+[ run ../no_ptr_mem_const_pass.cpp ]
+[ compile-fail ../no_ptr_mem_const_fail.cpp ] ;
+test-suite "BOOST_NO_VOID_RETURNS" :
+[ run ../no_void_returns_pass.cpp ]
+[ compile-fail ../no_void_returns_fail.cpp ] ;
 test-suite "BOOST_NO_STD_MESSAGES" :
 [ run ../no_std_messages_pass.cpp ]
 [ compile-fail ../no_std_messages_fail.cpp ] ;
-test-suite "BOOST_NO_STD_MIN_MAX" :
-[ run ../no_std_min_max_pass.cpp ]
-[ compile-fail ../no_std_min_max_fail.cpp ] ;
-test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" :
-[ run ../no_std_oi_assign_pass.cpp ]
-[ compile-fail ../no_std_oi_assign_fail.cpp ] ;
-test-suite "BOOST_NO_STD_TYPEINFO" :
-[ run ../no_std_typeinfo_pass.cpp ]
-[ compile-fail ../no_std_typeinfo_fail.cpp ] ;
-test-suite "BOOST_NO_STD_UNORDERED" :
-[ run ../no_std_unordered_pass.cpp ]
-[ compile-fail ../no_std_unordered_fail.cpp ] ;
-test-suite "BOOST_NO_STD_USE_FACET" :
-[ run ../no_std_use_facet_pass.cpp ]
-[ compile-fail ../no_std_use_facet_fail.cpp ] ;
-test-suite "BOOST_NO_STD_WSTREAMBUF" :
-[ run ../no_std_wstreambuf_pass.cpp ]
-[ compile-fail ../no_std_wstreambuf_fail.cpp ] ;
-test-suite "BOOST_NO_STD_WSTRING" :
-[ run ../no_std_wstring_pass.cpp ]
-[ compile-fail ../no_std_wstring_fail.cpp ] ;
-test-suite "BOOST_NO_SWPRINTF" :
-[ run ../no_swprintf_pass.cpp ]
-[ compile-fail ../no_swprintf_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_TEMPLATE_ALIASES" :
-[ run ../no_template_aliases_pass.cpp ]
-[ compile-fail ../no_template_aliases_fail.cpp ] ;
-test-suite "BOOST_NO_TEMPLATED_IOSTREAMS" :
-[ run ../no_template_streams_pass.cpp ]
-[ compile-fail ../no_template_streams_fail.cpp ] ;
-test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
-[ run ../no_template_template_pass.cpp ]
-[ compile-fail ../no_template_template_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_DECLTYPE" :
+[ run ../no_decltype_pass.cpp ]
+[ compile-fail ../no_decltype_fail.cpp ] ;
+test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" :
+[ run ../no_partial_spec_pass.cpp ]
+[ compile-fail ../no_partial_spec_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_UNORDERED_MAP" :
+[ run ../has_tr1_unordered_map_pass.cpp ]
+[ compile-fail ../has_tr1_unordered_map_fail.cpp ] ;
+test-suite "BOOST_NO_UNREACHABLE_RETURN_DETECTION" :
+[ run ../no_ret_det_pass.cpp ]
+[ compile-fail ../no_ret_det_fail.cpp ] ;
+test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" :
+[ run ../no_i64_limits_pass.cpp ]
+[ compile-fail ../no_i64_limits_fail.cpp ] ;
 test-suite "BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS" :
 [ run ../no_tem_local_classes_pass.cpp ]
 [ compile-fail ../no_tem_local_classes_fail.cpp ] ;
-test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" :
-[ run ../no_two_phase_lookup_pass.cpp ]
-[ compile-fail ../no_two_phase_lookup_fail.cpp ] ;
-test-suite "BOOST_NO_TYPEID" :
-[ run ../no_typeid_pass.cpp ]
-[ compile-fail ../no_typeid_fail.cpp ] ;
-test-suite "BOOST_NO_TYPENAME_WITH_CTOR" :
-[ run ../no_typename_with_ctor_pass.cpp ]
-[ compile-fail ../no_typename_with_ctor_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_UNICODE_LITERALS" :
-[ run ../no_unicode_literals_pass.cpp ]
-[ compile-fail ../no_unicode_literals_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX" :
-[ run ../no_unified_init_pass.cpp ]
-[ compile-fail ../no_unified_init_fail.cpp ] ;
-test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
-[ run ../no_using_breaks_adl_pass.cpp ]
-[ compile-fail ../no_using_breaks_adl_fail.cpp ] ;
-test-suite "BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE" :
-[ run ../no_using_decl_overld_pass.cpp ]
-[ compile-fail ../no_using_decl_overld_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_REGEX" :
+[ run ../no_cxx11_hdr_regex_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_regex_fail.cpp ] ;
+test-suite "BOOST_NO_FENV_H" :
+[ run ../no_fenv_h_pass.cpp ]
+[ compile-fail ../no_fenv_h_fail.cpp ] ;
+test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" :
+[ run ../no_limits_const_exp_pass.cpp ]
+[ compile-fail ../no_limits_const_exp_fail.cpp ] ;
+test-suite "BOOST_NO_CV_SPECIALIZATIONS" :
+[ run ../no_cv_spec_pass.cpp ]
+[ compile-fail ../no_cv_spec_fail.cpp ] ;
+test-suite "BOOST_NO_CXX11_HDR_MUTEX" :
+[ run ../no_cxx11_hdr_mutex_pass.cpp ]
+[ compile-fail ../no_cxx11_hdr_mutex_fail.cpp ] ;
+test-suite "BOOST_HAS_PTHREAD_DELAY_NP" :
+[ run ../has_pthread_delay_np_pass.cpp ]
+[ compile-fail ../has_pthread_delay_np_fail.cpp ] ;
 test-suite "BOOST_NO_USING_TEMPLATE" :
 [ run ../no_using_template_pass.cpp ]
 [ compile-fail ../no_using_template_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_VARIADIC_MACROS" :
-[ run ../no_variadic_macros_pass.cpp ]
-[ compile-fail ../no_variadic_macros_fail.cpp ] ;
-test-suite "BOOST_NO_CXX11_VARIADIC_TEMPLATES" :
-[ run ../no_variadic_templates_pass.cpp ]
-[ compile-fail ../no_variadic_templates_fail.cpp ] ;
-test-suite "BOOST_NO_VOID_RETURNS" :
-[ run ../no_void_returns_pass.cpp ]
-[ compile-fail ../no_void_returns_fail.cpp ] ;
-test-suite "BOOST_NO_INTRINSIC_WCHAR_T" :
-[ run ../no_wchar_t_pass.cpp ]
-[ compile-fail ../no_wchar_t_fail.cpp ] ;
+test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" :
+[ run ../no_exp_func_tem_arg_pass.cpp ]
+[ compile-fail ../no_exp_func_tem_arg_fail.cpp ] ;
+test-suite "BOOST_HAS_GETTIMEOFDAY" :
+[ run ../has_gettimeofday_pass.cpp ]
+[ compile-fail ../has_gettimeofday_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_MEM_FN" :
+[ run ../has_tr1_mem_fn_pass.cpp ]
+[ compile-fail ../has_tr1_mem_fn_fail.cpp ] ;
+test-suite "BOOST_NO_ADL_BARRIER" :
+[ run ../no_adl_barrier_pass.cpp ]
+[ compile-fail ../no_adl_barrier_fail.cpp ] ;
+test-suite "BOOST_HAS_VARIADIC_TMPL" :
+[ run ../has_variadic_tmpl_pass.cpp ]
+[ compile-fail ../has_variadic_tmpl_fail.cpp ] ;
+test-suite "BOOST_HAS_TR1_REFERENCE_WRAPPER" :
+[ run ../has_tr1_ref_wrap_pass.cpp ]
+[ compile-fail ../has_tr1_ref_wrap_fail.cpp ] ;
+test-suite "BOOST_HAS_SGI_TYPE_TRAITS" :
+[ run ../has_sgi_type_traits_pass.cpp ]
+[ compile-fail ../has_sgi_type_traits_fail.cpp ] ;
+test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" :
+[ run ../no_ops_in_namespace_pass.cpp ]
+[ compile-fail ../no_ops_in_namespace_fail.cpp ] ;
+test-suite "BOOST_NO_IS_ABSTRACT" :
+[ run ../no_is_abstract_pass.cpp ]
+[ compile-fail ../no_is_abstract_fail.cpp ] ;
 

Modified: branches/release/libs/config/test/boost_has_hash.ipp
==============================================================================
--- branches/release/libs/config/test/boost_has_hash.ipp (original)
+++ branches/release/libs/config/test/boost_has_hash.ipp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -11,12 +11,12 @@
 // or hash_map classes.
 
 #if defined(__GLIBCXX__) || (defined(__GLIBCPP__) && __GLIBCPP__>=20020514) // GCC >= 3.1.0
-# ifdef BOOST_NO_STD_UNORDERED
+# ifdef BOOST_NO_CXX11_STD_UNORDERED
 # define BOOST_STD_EXTENSION_NAMESPACE __gnu_cxx
 # include <ext/hash_set>
 # include <ext/hash_map>
 # else
- // If we have BOOST_NO_STD_UNORDERED *not* defined, then we must
+ // If we have BOOST_NO_CXX11_STD_UNORDERED *not* defined, then we must
      // not include the <ext/*> headers as they clash with the C++0x
      // headers. ie in any given translation unit we can include one
      // or the other, but not both.

Modified: branches/release/libs/config/test/boost_no_cxx11_atomic_sp.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_cxx11_atomic_sp.ipp (original)
+++ branches/release/libs/config/test/boost_no_cxx11_atomic_sp.ipp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -25,7 +25,6 @@
    atomic_store(&spi, spi2);
    atomic_store_explicit(&spi, spi2, std::memory_order_relaxed);
    atomic_exchange(&spi, spi2);
- atomic_exchange_explicit(&spi, std::memory_order_relaxed);
    atomic_compare_exchange_weak(&spi, &spi2, spi);
    atomic_compare_exchange_strong(&spi, &spi2, spi);
    atomic_compare_exchange_weak_explicit(&spi, &spi2, spi, std::memory_order_relaxed, std::memory_order_relaxed);

Modified: branches/release/libs/config/test/boost_no_cxx11_hdr_future.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_cxx11_hdr_future.ipp (original)
+++ branches/release/libs/config/test/boost_no_cxx11_hdr_future.ipp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -26,7 +26,6 @@
   using std::promise;
   using std::future;
   using std::shared_future;
- using std::atomic_future;
   using std::packaged_task; // undefined
   using std::async;
   return 0;

Modified: branches/release/libs/config/test/boost_no_cxx11_hdr_type_traits.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_cxx11_hdr_type_traits.ipp (original)
+++ branches/release/libs/config/test/boost_no_cxx11_hdr_type_traits.ipp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -76,7 +76,6 @@
   using std::is_same;
   using std::is_base_of;
   using std::is_convertible;
- using std::is_explicitly_convertible;
   using std::remove_const;
   using std::remove_volatile;
   using std::remove_cv;

Deleted: branches/release/libs/config/test/boost_no_std_unordered.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_std_unordered.ipp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
+++ (empty file)
@@ -1,27 +0,0 @@
-// (C) Copyright John Maddock and Dave Abrahams 2002.
-// 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)
-
-// See http://www.boost.org/libs/config for most recent version.
-
-// MACRO: BOOST_NO_STD_UNORDERED
-// TITLE: <unordered_map> and <unordered_set>
-// DESCRIPTION: Check for C++0x unordered container support
-
-#include <unordered_map>
-#include <unordered_set>
-
-namespace boost_no_std_unordered{
-
-int test()
-{
- std::unordered_map<int, int> im;
- std::unordered_set<int> is;
- std::unordered_multimap<int, int> imm;
- std::unordered_multiset<int> ims;
- return im.size() + is.size() + imm.size() + ims.size(); // all zero
-}
-
-}
-

Modified: branches/release/libs/config/test/config_info.cpp
==============================================================================
--- branches/release/libs/config/test/config_info.cpp (original)
+++ branches/release/libs/config/test/config_info.cpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -936,6 +936,7 @@
    PRINT_MACRO(BOOST_HAS_GETSYSTEMTIMEASFILETIME);
    PRINT_MACRO(BOOST_HAS_GETTIMEOFDAY);
    PRINT_MACRO(BOOST_HAS_HASH);
+ PRINT_MACRO(BOOST_HAS_INT128);
    PRINT_MACRO(BOOST_HAS_LOG1P);
    PRINT_MACRO(BOOST_HAS_LONG_LONG);
    PRINT_MACRO(BOOST_HAS_MACRO_USE_FACET);
@@ -1026,6 +1027,7 @@
    PRINT_MACRO(BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS);
    PRINT_MACRO(BOOST_NO_CXX11_NOEXCEPT);
    PRINT_MACRO(BOOST_NO_CXX11_NULLPTR);
+ PRINT_MACRO(BOOST_NO_CXX11_NUMERIC_LIMITS);
    PRINT_MACRO(BOOST_NO_CXX11_RANGE_BASED_FOR);
    PRINT_MACRO(BOOST_NO_CXX11_RAW_LITERALS);
    PRINT_MACRO(BOOST_NO_CXX11_RVALUE_REFERENCES);
@@ -1061,7 +1063,6 @@
    PRINT_MACRO(BOOST_NO_MEMBER_TEMPLATE_KEYWORD);
    PRINT_MACRO(BOOST_NO_MS_INT64_NUMERIC_LIMITS);
    PRINT_MACRO(BOOST_NO_NESTED_FRIENDSHIP);
- PRINT_MACRO(BOOST_NO_CXX11_NUMERIC_LIMITS);
    PRINT_MACRO(BOOST_NO_OPERATORS_IN_NAMESPACE);
    PRINT_MACRO(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS);
    PRINT_MACRO(BOOST_NO_POINTER_TO_MEMBER_CONST);
@@ -1080,7 +1081,6 @@
    PRINT_MACRO(BOOST_NO_STD_MIN_MAX);
    PRINT_MACRO(BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN);
    PRINT_MACRO(BOOST_NO_STD_TYPEINFO);
- PRINT_MACRO(BOOST_NO_STD_UNORDERED);
    PRINT_MACRO(BOOST_NO_STD_USE_FACET);
    PRINT_MACRO(BOOST_NO_STD_WSTREAMBUF);
    PRINT_MACRO(BOOST_NO_STD_WSTRING);
@@ -1118,6 +1118,7 @@
 
 
 
+
    // END GENERATED BLOCK
 
    PRINT_MACRO(BOOST_INTEL);

Modified: branches/release/libs/config/test/config_test.cpp
==============================================================================
--- branches/release/libs/config/test/config_test.cpp (original)
+++ branches/release/libs/config/test/config_test.cpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
@@ -1,4 +1,4 @@
-// This file was automatically generated on Tue Jul 10 14:57:46 2012
+// This file was automatically generated on Thu Oct 25 10:14:36 2012
 // by libs/config/tools/generate.cpp
 // Copyright John Maddock 2002-4.
 // Use, modification and distribution are subject to the
@@ -22,998 +22,993 @@
 
 int error_count = 0;
 
-#ifndef BOOST_NO_ADL_BARRIER
-#include "boost_no_adl_barrier.ipp"
+#ifndef BOOST_NO_LIMITS
+#include "boost_no_limits.ipp"
 #else
-namespace boost_no_adl_barrier = empty_boost;
+namespace boost_no_limits = empty_boost;
 #endif
-#ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
-#include "boost_no_arg_dep_lookup.ipp"
+#ifndef BOOST_NO_IOSTREAM
+#include "boost_no_iostream.ipp"
 #else
-namespace boost_no_argument_dependent_lookup = empty_boost;
+namespace boost_no_iostream = empty_boost;
 #endif
-#ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
-#include "boost_no_array_type_spec.ipp"
+#ifndef BOOST_NO_CXX11_HDR_CHRONO
+#include "boost_no_cxx11_hdr_chrono.ipp"
 #else
-namespace boost_no_array_type_specializations = empty_boost;
+namespace boost_no_cxx11_hdr_chrono = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_AUTO_DECLARATIONS
-#include "boost_no_auto_declarations.ipp"
+#ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL
+#include "boost_no_cxx_hdr_functional.ipp"
 #else
-namespace boost_no_cxx11_auto_declarations = empty_boost;
+namespace boost_no_cxx11_hdr_functional = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
-#include "boost_no_auto_multidecl.ipp"
+#ifndef BOOST_NO_CTYPE_FUNCTIONS
+#include "boost_no_ctype_functions.ipp"
 #else
-namespace boost_no_cxx11_auto_multideclarations = empty_boost;
+namespace boost_no_ctype_functions = empty_boost;
 #endif
-#ifndef BOOST_NO_AUTO_PTR
-#include "boost_no_auto_ptr.ipp"
+#ifndef BOOST_NO_TEMPLATED_IOSTREAMS
+#include "boost_no_template_streams.ipp"
 #else
-namespace boost_no_auto_ptr = empty_boost;
+namespace boost_no_templated_iostreams = empty_boost;
 #endif
-#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
-#include "boost_no_bcb_partial_spec.ipp"
+#ifndef BOOST_NO_CXX11_UNICODE_LITERALS
+#include "boost_no_unicode_literals.ipp"
 #else
-namespace boost_bcb_partial_specialization_bug = empty_boost;
+namespace boost_no_cxx11_unicode_literals = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_CHAR16_T
-#include "boost_no_char16_t.ipp"
+#ifndef BOOST_NO_TYPENAME_WITH_CTOR
+#include "boost_no_typename_with_ctor.ipp"
 #else
-namespace boost_no_cxx11_char16_t = empty_boost;
+namespace boost_no_typename_with_ctor = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_CHAR32_T
-#include "boost_no_char32_t.ipp"
+#ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
+#include "boost_no_array_type_spec.ipp"
 #else
-namespace boost_no_cxx11_char32_t = empty_boost;
+namespace boost_no_array_type_specializations = empty_boost;
 #endif
-#ifndef BOOST_NO_COMPLETE_VALUE_INITIALIZATION
-#include "boost_no_com_value_init.ipp"
+#ifndef BOOST_NO_CXX11_HDR_RATIO
+#include "boost_no_cxx11_hdr_ratio.ipp"
 #else
-namespace boost_no_complete_value_initialization = empty_boost;
+namespace boost_no_cxx11_hdr_ratio = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_CONSTEXPR
-#include "boost_no_constexpr.ipp"
+#ifndef BOOST_NO_IOSFWD
+#include "boost_no_iosfwd.ipp"
 #else
-namespace boost_no_cxx11_constexpr = empty_boost;
+namespace boost_no_iosfwd = empty_boost;
 #endif
-#ifndef BOOST_NO_CTYPE_FUNCTIONS
-#include "boost_no_ctype_functions.ipp"
+#ifndef BOOST_NO_STD_ITERATOR_TRAITS
+#include "boost_no_std_iter_traits.ipp"
 #else
-namespace boost_no_ctype_functions = empty_boost;
+namespace boost_no_std_iterator_traits = empty_boost;
 #endif
-#ifndef BOOST_NO_CV_SPECIALIZATIONS
-#include "boost_no_cv_spec.ipp"
+#ifndef BOOST_NO_STD_DISTANCE
+#include "boost_no_std_distance.ipp"
 #else
-namespace boost_no_cv_specializations = empty_boost;
+namespace boost_no_std_distance = empty_boost;
 #endif
-#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS
-#include "boost_no_cv_void_spec.ipp"
+#ifndef BOOST_NO_CXX11_HDR_ARRAY
+#include "boost_no_cxx11_hdr_array.ipp"
 #else
-namespace boost_no_cv_void_specializations = empty_boost;
+namespace boost_no_cxx11_hdr_array = empty_boost;
 #endif
-#ifndef BOOST_NO_CWCHAR
-#include "boost_no_cwchar.ipp"
+#ifndef BOOST_NO_CXX11_HDR_UNORDERED_MAP
+#include "boost_no_cxx11_hdr_unordered_map.ipp"
 #else
-namespace boost_no_cwchar = empty_boost;
+namespace boost_no_cxx11_hdr_unordered_map = empty_boost;
 #endif
-#ifndef BOOST_NO_CWCTYPE
-#include "boost_no_cwctype.ipp"
+#ifndef BOOST_NO_CXX11_HDR_RANDOM
+#include "boost_no_cxx11_hdr_random.ipp"
 #else
-namespace boost_no_cwctype = empty_boost;
+namespace boost_no_cxx11_hdr_random = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_ALLOCATOR
-#include "boost_no_cxx11_allocator.ipp"
+#ifndef BOOST_NO_CXX11_NUMERIC_LIMITS
+#include "boost_no_cxx11_numeric_limits.ipp"
 #else
-namespace boost_no_cxx11_allocator = empty_boost;
+namespace boost_no_cxx11_numeric_limits = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_ATOMIC_SMART_PTR
-#include "boost_no_cxx11_atomic_sp.ipp"
+#ifndef BOOST_NO_PRIVATE_IN_AGGREGATE
+#include "boost_no_priv_aggregate.ipp"
 #else
-namespace boost_no_cxx11_atomic_smart_ptr = empty_boost;
+namespace boost_no_private_in_aggregate = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_ARRAY
-#include "boost_no_cxx11_hdr_array.ipp"
+#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
+#include "boost_no_func_tmp_order.ipp"
 #else
-namespace boost_no_cxx11_hdr_array = empty_boost;
+namespace boost_no_function_template_ordering = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_CHRONO
-#include "boost_no_cxx11_hdr_chrono.ipp"
+#ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD
+#include "boost_no_mem_tem_keyword.ipp"
 #else
-namespace boost_no_cxx11_hdr_chrono = empty_boost;
+namespace boost_no_member_template_keyword = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_CODECVT
-#include "boost_no_cxx11_hdr_codecvt.ipp"
+#ifndef BOOST_NO_CXX11_VARIADIC_MACROS
+#include "boost_no_variadic_macros.ipp"
 #else
-namespace boost_no_cxx11_hdr_codecvt = empty_boost;
+namespace boost_no_cxx11_variadic_macros = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
-#include "boost_no_cxx11_hdr_condition_variable.ipp"
+#ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
+#include "boost_no_cxx11_hdr_initializer_list.ipp"
 #else
-namespace boost_no_cxx11_hdr_condition_variable = empty_boost;
+namespace boost_no_cxx11_hdr_initializer_list = empty_boost;
+#endif
+#ifndef BOOST_NO_TEMPLATE_TEMPLATES
+#include "boost_no_template_template.ipp"
+#else
+namespace boost_no_template_templates = empty_boost;
 #endif
 #ifndef BOOST_NO_CXX11_HDR_FORWARD_LIST
 #include "boost_no_cxx11_hdr_forward_list.ipp"
 #else
 namespace boost_no_cxx11_hdr_forward_list = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_FUTURE
-#include "boost_no_cxx11_hdr_future.ipp"
+#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
+#include "boost_no_iter_construct.ipp"
 #else
-namespace boost_no_cxx11_hdr_future = empty_boost;
+namespace boost_no_templated_iterator_constructors = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
-#include "boost_no_cxx11_hdr_initializer_list.ipp"
+#ifndef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
+#include "boost_no_defaulted_functions.ipp"
 #else
-namespace boost_no_cxx11_hdr_initializer_list = empty_boost;
+namespace boost_no_cxx11_defaulted_functions = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_MUTEX
-#include "boost_no_cxx11_hdr_mutex.ipp"
+#ifndef BOOST_NO_SFINAE
+#include "boost_no_sfinae.ipp"
 #else
-namespace boost_no_cxx11_hdr_mutex = empty_boost;
+namespace boost_no_sfinae = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_RANDOM
-#include "boost_no_cxx11_hdr_random.ipp"
+#ifndef BOOST_NO_STRINGSTREAM
+#include "boost_no_sstream.ipp"
 #else
-namespace boost_no_cxx11_hdr_random = empty_boost;
+namespace boost_no_stringstream = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_RATIO
-#include "boost_no_cxx11_hdr_ratio.ipp"
+#ifndef BOOST_NO_CXX11_RANGE_BASED_FOR
+#include "boost_no_range_based_for.ipp"
 #else
-namespace boost_no_cxx11_hdr_ratio = empty_boost;
+namespace boost_no_cxx11_range_based_for = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_REGEX
-#include "boost_no_cxx11_hdr_regex.ipp"
+#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
+#include "boost_no_variadic_templates.ipp"
 #else
-namespace boost_no_cxx11_hdr_regex = empty_boost;
+namespace boost_no_cxx11_variadic_templates = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_SYSTEM_ERROR
-#include "boost_no_cxx11_hdr_system_error.ipp"
+#ifndef BOOST_NO_CXX11_NOEXCEPT
+#include "boost_no_noexcept.ipp"
 #else
-namespace boost_no_cxx11_hdr_system_error = empty_boost;
+namespace boost_no_cxx11_noexcept = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_THREAD
-#include "boost_no_cxx11_hdr_thread.ipp"
+#ifndef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
+#include "boost_no_auto_multidecl.ipp"
 #else
-namespace boost_no_cxx11_hdr_thread = empty_boost;
+namespace boost_no_cxx11_auto_multideclarations = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_TUPLE
-#include "boost_no_cxx11_hdr_tuple.ipp"
+#ifndef BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS
+#include "boost_no_part_spec_def_args.ipp"
 #else
-namespace boost_no_cxx11_hdr_tuple = empty_boost;
+namespace boost_no_partial_specialization_implicit_default_args = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_TYPEINDEX
-#include "boost_no_cxx11_hdr_typeindex.ipp"
+#ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
+#include "boost_no_using_breaks_adl.ipp"
 #else
-namespace boost_no_cxx11_hdr_typeindex = empty_boost;
+namespace boost_function_scope_using_declaration_breaks_adl = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS
-#include "boost_no_cxx11_hdr_type_traits.ipp"
+#ifndef BOOST_NO_STD_LOCALE
+#include "boost_no_std_locale.ipp"
 #else
-namespace boost_no_cxx11_hdr_type_traits = empty_boost;
+namespace boost_no_std_locale = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_UNORDERED_MAP
-#include "boost_no_cxx11_hdr_unordered_map.ipp"
+#ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS
+#include "boost_no_ll_limits.ipp"
 #else
-namespace boost_no_cxx11_hdr_unordered_map = empty_boost;
+namespace boost_no_long_long_numeric_limits = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_UNORDERED_SET
-#include "boost_no_cxx11_hdr_unordered_set.ipp"
+#ifndef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
+#include "boost_no_unified_init.ipp"
 #else
-namespace boost_no_cxx11_hdr_unordered_set = empty_boost;
+namespace boost_no_cxx11_unified_initialization_syntax = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_SMART_PTR
-#include "boost_no_cxx11_smart_ptr.ipp"
+#ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
+#include "boost_no_explicit_cvt_ops.ipp"
 #else
-namespace boost_no_cxx11_smart_ptr = empty_boost;
+namespace boost_no_cxx11_explicit_conversion_operators = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL
-#include "boost_no_cxx_hdr_functional.ipp"
+#ifndef BOOST_NO_NESTED_FRIENDSHIP
+#include "boost_no_nested_friendship.ipp"
 #else
-namespace boost_no_cxx11_hdr_functional = empty_boost;
+namespace boost_no_nested_friendship = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_DECLTYPE
-#include "boost_no_decltype.ipp"
+#ifndef BOOST_NO_CXX11_ALLOCATOR
+#include "boost_no_cxx11_allocator.ipp"
 #else
-namespace boost_no_cxx11_decltype = empty_boost;
+namespace boost_no_cxx11_allocator = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_DECLTYPE_N3276
-#include "boost_no_decltype_n3276.ipp"
+#ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS
+#include "boost_no_cxx11_hdr_type_traits.ipp"
 #else
-namespace boost_no_cxx11_decltype_n3276 = empty_boost;
+namespace boost_no_cxx11_hdr_type_traits = empty_boost;
 #endif
-#ifndef BOOST_DEDUCED_TYPENAME
-#include "boost_no_ded_typename.ipp"
+#ifndef BOOST_NO_CXX11_HDR_FUTURE
+#include "boost_no_cxx11_hdr_future.ipp"
 #else
-namespace boost_deduced_typename = empty_boost;
+namespace boost_no_cxx11_hdr_future = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
-#include "boost_no_defaulted_functions.ipp"
+#ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
+#include "boost_no_mem_func_spec.ipp"
 #else
-namespace boost_no_cxx11_defaulted_functions = empty_boost;
+namespace boost_no_member_function_specializations = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS
-#include "boost_no_deleted_functions.ipp"
+#ifndef BOOST_NO_STD_ITERATOR
+#include "boost_no_std_iterator.ipp"
 #else
-namespace boost_no_cxx11_deleted_functions = empty_boost;
+namespace boost_no_std_iterator = empty_boost;
 #endif
-#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
-#include "boost_no_dep_nested_class.ipp"
+#ifndef BOOST_NO_EXCEPTIONS
+#include "boost_no_exceptions.ipp"
 #else
-namespace boost_no_dependent_nested_derivations = empty_boost;
+namespace boost_no_exceptions = empty_boost;
 #endif
-#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
-#include "boost_no_dep_val_param.ipp"
+#ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
+#include "boost_no_cxx11_hdr_condition_variable.ipp"
 #else
-namespace boost_no_dependent_types_in_template_value_parameters = empty_boost;
+namespace boost_no_cxx11_hdr_condition_variable = empty_boost;
 #endif
-#ifndef BOOST_NO_EXCEPTIONS
-#include "boost_no_exceptions.ipp"
+#ifndef BOOST_NO_INTRINSIC_WCHAR_T
+#include "boost_no_wchar_t.ipp"
 #else
-namespace boost_no_exceptions = empty_boost;
+namespace boost_no_intrinsic_wchar_t = empty_boost;
 #endif
-#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE
-#include "boost_no_excep_std.ipp"
+#ifndef BOOST_NO_STD_ALLOCATOR
+#include "boost_no_std_allocator.ipp"
 #else
-namespace boost_no_exception_std_namespace = empty_boost;
+namespace boost_no_std_allocator = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
-#include "boost_no_explicit_cvt_ops.ipp"
+#ifndef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
+#include "boost_no_function_template_default_args.ipp"
 #else
-namespace boost_no_cxx11_explicit_conversion_operators = empty_boost;
+namespace boost_no_cxx11_function_template_default_args = empty_boost;
 #endif
-#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
-#include "boost_no_exp_func_tem_arg.ipp"
+#ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES
+#include "boost_no_template_aliases.ipp"
 #else
-namespace boost_no_explicit_function_template_arguments = empty_boost;
+namespace boost_no_cxx11_template_aliases = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE
-#include "boost_no_extern_template.ipp"
+#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS
+#include "boost_no_cv_void_spec.ipp"
 #else
-namespace boost_no_cxx11_extern_template = empty_boost;
+namespace boost_no_cv_void_specializations = empty_boost;
 #endif
-#ifndef BOOST_NO_FENV_H
-#include "boost_no_fenv_h.ipp"
+#ifndef BOOST_NO_CXX11_SMART_PTR
+#include "boost_no_cxx11_smart_ptr.ipp"
 #else
-namespace boost_no_fenv_h = empty_boost;
+namespace boost_no_cxx11_smart_ptr = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
-#include "boost_no_function_template_default_args.ipp"
+#ifndef BOOST_NO_CXX11_HDR_THREAD
+#include "boost_no_cxx11_hdr_thread.ipp"
 #else
-namespace boost_no_cxx11_function_template_default_args = empty_boost;
+namespace boost_no_cxx11_hdr_thread = empty_boost;
 #endif
-#ifndef BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
-#include "boost_no_function_type_spec.ipp"
+#ifndef BOOST_NO_AUTO_PTR
+#include "boost_no_auto_ptr.ipp"
 #else
-namespace boost_no_function_type_specializations = empty_boost;
+namespace boost_no_auto_ptr = empty_boost;
 #endif
-#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
-#include "boost_no_func_tmp_order.ipp"
+#ifndef BOOST_NO_CXX11_RAW_LITERALS
+#include "boost_no_raw_literals.ipp"
 #else
-namespace boost_no_function_template_ordering = empty_boost;
+namespace boost_no_cxx11_raw_literals = empty_boost;
 #endif
-#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS
-#include "boost_no_i64_limits.ipp"
+#ifndef BOOST_NO_STD_WSTRING
+#include "boost_no_std_wstring.ipp"
 #else
-namespace boost_no_ms_int64_numeric_limits = empty_boost;
+namespace boost_no_std_wstring = empty_boost;
 #endif
-#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
-#include "boost_no_inline_memb_init.ipp"
+#ifndef BOOST_NO_STD_TYPEINFO
+#include "boost_no_std_typeinfo.ipp"
 #else
-namespace boost_no_inclass_member_initialization = empty_boost;
+namespace boost_no_std_typeinfo = empty_boost;
 #endif
-#ifndef BOOST_NO_INTEGRAL_INT64_T
-#include "boost_no_integral_int64_t.ipp"
+#ifndef BOOST_NO_CXX11_DECLTYPE_N3276
+#include "boost_no_decltype_n3276.ipp"
 #else
-namespace boost_no_integral_int64_t = empty_boost;
+namespace boost_no_cxx11_decltype_n3276 = empty_boost;
 #endif
-#ifndef BOOST_NO_IOSFWD
-#include "boost_no_iosfwd.ipp"
+#ifndef BOOST_NO_CXX11_ATOMIC_SMART_PTR
+#include "boost_no_cxx11_atomic_sp.ipp"
 #else
-namespace boost_no_iosfwd = empty_boost;
+namespace boost_no_cxx11_atomic_smart_ptr = empty_boost;
 #endif
-#ifndef BOOST_NO_IOSTREAM
-#include "boost_no_iostream.ipp"
+#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
+#include "boost_no_rvalue_references.ipp"
 #else
-namespace boost_no_iostream = empty_boost;
+namespace boost_no_cxx11_rvalue_references = empty_boost;
 #endif
-#ifndef BOOST_NO_IS_ABSTRACT
-#include "boost_no_is_abstract.ipp"
+#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
+#include "boost_no_dep_nested_class.ipp"
 #else
-namespace boost_no_is_abstract = empty_boost;
+namespace boost_no_dependent_nested_derivations = empty_boost;
 #endif
-#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
-#include "boost_no_iter_construct.ipp"
+#ifndef BOOST_NO_CXX11_HDR_SYSTEM_ERROR
+#include "boost_no_cxx11_hdr_system_error.ipp"
 #else
-namespace boost_no_templated_iterator_constructors = empty_boost;
+namespace boost_no_cxx11_hdr_system_error = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_LAMBDAS
-#include "boost_no_lambdas.ipp"
+#ifndef BOOST_NO_LONG_LONG
+#include "boost_no_long_long.ipp"
 #else
-namespace boost_no_cxx11_lambdas = empty_boost;
+namespace boost_no_long_long = empty_boost;
 #endif
-#ifndef BOOST_NO_LIMITS
-#include "boost_no_limits.ipp"
+#ifndef BOOST_NO_TYPEID
+#include "boost_no_typeid.ipp"
 #else
-namespace boost_no_limits = empty_boost;
+namespace boost_no_typeid = empty_boost;
 #endif
-#ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
-#include "boost_no_limits_const_exp.ipp"
+#ifndef BOOST_NO_CXX11_HDR_TUPLE
+#include "boost_no_cxx11_hdr_tuple.ipp"
 #else
-namespace boost_no_limits_compile_time_constants = empty_boost;
+namespace boost_no_cxx11_hdr_tuple = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_NUMERIC_LIMITS
-#include "boost_no_cxx11_numeric_limits.ipp"
+#ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP
+#include "boost_no_two_phase_lookup.ipp"
+#else
+namespace boost_no_two_phase_name_lookup = empty_boost;
+#endif
+#ifndef BOOST_NO_SFINAE_EXPR
+#include "boost_no_sfinae_expr.ipp"
+#else
+namespace boost_no_sfinae_expr = empty_boost;
+#endif
+#ifndef BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
+#include "boost_no_function_type_spec.ipp"
 #else
-namespace boost_no_cxx11_numeric_limits = empty_boost;
+namespace boost_no_function_type_specializations = empty_boost;
 #endif
-#ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS
-#include "boost_no_ll_limits.ipp"
+#ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS
+#include "boost_no_deleted_functions.ipp"
 #else
-namespace boost_no_long_long_numeric_limits = empty_boost;
+namespace boost_no_cxx11_deleted_functions = empty_boost;
 #endif
-#ifndef BOOST_NO_LONG_LONG
-#include "boost_no_long_long.ipp"
+#ifndef BOOST_NO_RTTI
+#include "boost_no_rtti.ipp"
 #else
-namespace boost_no_long_long = empty_boost;
+namespace boost_no_rtti = empty_boost;
 #endif
-#ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
-#include "boost_no_mem_func_spec.ipp"
+#ifndef BOOST_NO_CXX11_CHAR16_T
+#include "boost_no_char16_t.ipp"
 #else
-namespace boost_no_member_function_specializations = empty_boost;
+namespace boost_no_cxx11_char16_t = empty_boost;
 #endif
-#ifndef BOOST_NO_MEMBER_TEMPLATES
-#include "boost_no_mem_templates.ipp"
+#ifndef BOOST_NO_CXX11_AUTO_DECLARATIONS
+#include "boost_no_auto_declarations.ipp"
 #else
-namespace boost_no_member_templates = empty_boost;
+namespace boost_no_cxx11_auto_declarations = empty_boost;
 #endif
 #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
 #include "boost_no_mem_templ_frnds.ipp"
 #else
 namespace boost_no_member_template_friends = empty_boost;
 #endif
-#ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD
-#include "boost_no_mem_tem_keyword.ipp"
-#else
-namespace boost_no_member_template_keyword = empty_boost;
-#endif
 #ifndef BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
 #include "boost_no_mem_tem_pnts.ipp"
 #else
 namespace boost_no_pointer_to_member_template_parameters = empty_boost;
 #endif
-#ifndef BOOST_NO_NESTED_FRIENDSHIP
-#include "boost_no_nested_friendship.ipp"
-#else
-namespace boost_no_nested_friendship = empty_boost;
-#endif
-#ifndef BOOST_NO_CXX11_NOEXCEPT
-#include "boost_no_noexcept.ipp"
+#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
+#include "boost_no_inline_memb_init.ipp"
 #else
-namespace boost_no_cxx11_noexcept = empty_boost;
+namespace boost_no_inclass_member_initialization = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_NULLPTR
-#include "boost_no_nullptr.ipp"
+#ifndef BOOST_NO_SWPRINTF
+#include "boost_no_swprintf.ipp"
 #else
-namespace boost_no_cxx11_nullptr = empty_boost;
+namespace boost_no_swprintf = empty_boost;
 #endif
-#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
-#include "boost_no_ops_in_namespace.ipp"
+#ifndef BOOST_NO_STD_USE_FACET
+#include "boost_no_std_use_facet.ipp"
 #else
-namespace boost_no_operators_in_namespace = empty_boost;
+namespace boost_no_std_use_facet = empty_boost;
 #endif
-#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
-#include "boost_no_partial_spec.ipp"
+#ifndef BOOST_NO_MEMBER_TEMPLATES
+#include "boost_no_mem_templates.ipp"
 #else
-namespace boost_no_template_partial_specialization = empty_boost;
+namespace boost_no_member_templates = empty_boost;
 #endif
-#ifndef BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS
-#include "boost_no_part_spec_def_args.ipp"
+#ifndef BOOST_NO_CWCHAR
+#include "boost_no_cwchar.ipp"
 #else
-namespace boost_no_partial_specialization_implicit_default_args = empty_boost;
+namespace boost_no_cwchar = empty_boost;
 #endif
-#ifndef BOOST_NO_PRIVATE_IN_AGGREGATE
-#include "boost_no_priv_aggregate.ipp"
+#ifndef BOOST_NO_CXX11_CONSTEXPR
+#include "boost_no_constexpr.ipp"
 #else
-namespace boost_no_private_in_aggregate = empty_boost;
+namespace boost_no_cxx11_constexpr = empty_boost;
 #endif
-#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST
-#include "boost_no_ptr_mem_const.ipp"
+#ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
+#include "boost_no_std_oi_assign.ipp"
 #else
-namespace boost_no_pointer_to_member_const = empty_boost;
+namespace boost_no_std_output_iterator_assign = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_RANGE_BASED_FOR
-#include "boost_no_range_based_for.ipp"
+#ifndef BOOST_NO_STDC_NAMESPACE
+#include "boost_no_stdc_namespace.ipp"
 #else
-namespace boost_no_cxx11_range_based_for = empty_boost;
+namespace boost_no_stdc_namespace = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_RAW_LITERALS
-#include "boost_no_raw_literals.ipp"
+#ifndef BOOST_NO_CXX11_NULLPTR
+#include "boost_no_nullptr.ipp"
 #else
-namespace boost_no_cxx11_raw_literals = empty_boost;
+namespace boost_no_cxx11_nullptr = empty_boost;
 #endif
-#ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION
-#include "boost_no_ret_det.ipp"
+#ifndef BOOST_NO_CXX11_HDR_UNORDERED_SET
+#include "boost_no_cxx11_hdr_unordered_set.ipp"
 #else
-namespace boost_no_unreachable_return_detection = empty_boost;
+namespace boost_no_cxx11_hdr_unordered_set = empty_boost;
 #endif
-#ifndef BOOST_NO_RTTI
-#include "boost_no_rtti.ipp"
+#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
+#include "boost_no_bcb_partial_spec.ipp"
 #else
-namespace boost_no_rtti = empty_boost;
+namespace boost_bcb_partial_specialization_bug = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
-#include "boost_no_rvalue_references.ipp"
+#ifndef BOOST_NO_STD_WSTREAMBUF
+#include "boost_no_std_wstreambuf.ipp"
 #else
-namespace boost_no_cxx11_rvalue_references = empty_boost;
+namespace boost_no_std_wstreambuf = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_SCOPED_ENUMS
-#include "boost_no_scoped_enums.ipp"
+#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
+#include "boost_no_dep_val_param.ipp"
 #else
-namespace boost_no_cxx11_scoped_enums = empty_boost;
+namespace boost_no_dependent_types_in_template_value_parameters = empty_boost;
 #endif
-#ifndef BOOST_NO_SFINAE
-#include "boost_no_sfinae.ipp"
+#ifndef BOOST_NO_CXX11_HDR_TYPEINDEX
+#include "boost_no_cxx11_hdr_typeindex.ipp"
 #else
-namespace boost_no_sfinae = empty_boost;
+namespace boost_no_cxx11_hdr_typeindex = empty_boost;
 #endif
-#ifndef BOOST_NO_SFINAE_EXPR
-#include "boost_no_sfinae_expr.ipp"
+#ifndef BOOST_NO_CXX11_CHAR32_T
+#include "boost_no_char32_t.ipp"
 #else
-namespace boost_no_sfinae_expr = empty_boost;
+namespace boost_no_cxx11_char32_t = empty_boost;
 #endif
-#ifndef BOOST_NO_STRINGSTREAM
-#include "boost_no_sstream.ipp"
+#ifndef BOOST_NO_COMPLETE_VALUE_INITIALIZATION
+#include "boost_no_com_value_init.ipp"
 #else
-namespace boost_no_stringstream = empty_boost;
+namespace boost_no_complete_value_initialization = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_STATIC_ASSERT
-#include "boost_no_static_assert.ipp"
+#ifndef BOOST_DEDUCED_TYPENAME
+#include "boost_no_ded_typename.ipp"
 #else
-namespace boost_no_cxx11_static_assert = empty_boost;
+namespace boost_deduced_typename = empty_boost;
 #endif
-#ifndef BOOST_NO_STDC_NAMESPACE
-#include "boost_no_stdc_namespace.ipp"
+#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE
+#include "boost_no_excep_std.ipp"
 #else
-namespace boost_no_stdc_namespace = empty_boost;
+namespace boost_no_exception_std_namespace = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_ALLOCATOR
-#include "boost_no_std_allocator.ipp"
+#ifndef BOOST_NO_STD_MIN_MAX
+#include "boost_no_std_min_max.ipp"
 #else
-namespace boost_no_std_allocator = empty_boost;
+namespace boost_no_std_min_max = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_DISTANCE
-#include "boost_no_std_distance.ipp"
+#ifndef BOOST_NO_CXX11_STATIC_ASSERT
+#include "boost_no_static_assert.ipp"
 #else
-namespace boost_no_std_distance = empty_boost;
+namespace boost_no_cxx11_static_assert = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_ITERATOR
-#include "boost_no_std_iterator.ipp"
+#ifndef BOOST_NO_CXX11_LAMBDAS
+#include "boost_no_lambdas.ipp"
 #else
-namespace boost_no_std_iterator = empty_boost;
+namespace boost_no_cxx11_lambdas = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_ITERATOR_TRAITS
-#include "boost_no_std_iter_traits.ipp"
+#ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
+#include "boost_no_arg_dep_lookup.ipp"
 #else
-namespace boost_no_std_iterator_traits = empty_boost;
+namespace boost_no_argument_dependent_lookup = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_LOCALE
-#include "boost_no_std_locale.ipp"
+#ifndef BOOST_NO_CXX11_SCOPED_ENUMS
+#include "boost_no_scoped_enums.ipp"
 #else
-namespace boost_no_std_locale = empty_boost;
+namespace boost_no_cxx11_scoped_enums = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_MESSAGES
-#include "boost_no_std_messages.ipp"
+#ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE
+#include "boost_no_extern_template.ipp"
 #else
-namespace boost_no_std_messages = empty_boost;
+namespace boost_no_cxx11_extern_template = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_MIN_MAX
-#include "boost_no_std_min_max.ipp"
+#ifndef BOOST_NO_INTEGRAL_INT64_T
+#include "boost_no_integral_int64_t.ipp"
 #else
-namespace boost_no_std_min_max = empty_boost;
+namespace boost_no_integral_int64_t = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
-#include "boost_no_std_oi_assign.ipp"
+#ifndef BOOST_NO_CXX11_HDR_CODECVT
+#include "boost_no_cxx11_hdr_codecvt.ipp"
 #else
-namespace boost_no_std_output_iterator_assign = empty_boost;
+namespace boost_no_cxx11_hdr_codecvt = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_TYPEINFO
-#include "boost_no_std_typeinfo.ipp"
+#ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
+#include "boost_no_using_decl_overld.ipp"
 #else
-namespace boost_no_std_typeinfo = empty_boost;
+namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_UNORDERED
-#include "boost_no_std_unordered.ipp"
+#ifndef BOOST_NO_CWCTYPE
+#include "boost_no_cwctype.ipp"
 #else
-namespace boost_no_std_unordered = empty_boost;
+namespace boost_no_cwctype = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_USE_FACET
-#include "boost_no_std_use_facet.ipp"
+#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST
+#include "boost_no_ptr_mem_const.ipp"
 #else
-namespace boost_no_std_use_facet = empty_boost;
+namespace boost_no_pointer_to_member_const = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_WSTREAMBUF
-#include "boost_no_std_wstreambuf.ipp"
+#ifndef BOOST_NO_VOID_RETURNS
+#include "boost_no_void_returns.ipp"
 #else
-namespace boost_no_std_wstreambuf = empty_boost;
+namespace boost_no_void_returns = empty_boost;
 #endif
-#ifndef BOOST_NO_STD_WSTRING
-#include "boost_no_std_wstring.ipp"
+#ifndef BOOST_NO_STD_MESSAGES
+#include "boost_no_std_messages.ipp"
 #else
-namespace boost_no_std_wstring = empty_boost;
+namespace boost_no_std_messages = empty_boost;
 #endif
-#ifndef BOOST_NO_SWPRINTF
-#include "boost_no_swprintf.ipp"
+#ifndef BOOST_NO_CXX11_DECLTYPE
+#include "boost_no_decltype.ipp"
 #else
-namespace boost_no_swprintf = empty_boost;
+namespace boost_no_cxx11_decltype = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES
-#include "boost_no_template_aliases.ipp"
+#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
+#include "boost_no_partial_spec.ipp"
 #else
-namespace boost_no_cxx11_template_aliases = empty_boost;
+namespace boost_no_template_partial_specialization = empty_boost;
 #endif
-#ifndef BOOST_NO_TEMPLATED_IOSTREAMS
-#include "boost_no_template_streams.ipp"
+#ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION
+#include "boost_no_ret_det.ipp"
 #else
-namespace boost_no_templated_iostreams = empty_boost;
+namespace boost_no_unreachable_return_detection = empty_boost;
 #endif
-#ifndef BOOST_NO_TEMPLATE_TEMPLATES
-#include "boost_no_template_template.ipp"
+#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS
+#include "boost_no_i64_limits.ipp"
 #else
-namespace boost_no_template_templates = empty_boost;
+namespace boost_no_ms_int64_numeric_limits = empty_boost;
 #endif
 #ifndef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
 #include "boost_no_tem_local_classes.ipp"
 #else
 namespace boost_no_cxx11_local_class_template_parameters = empty_boost;
 #endif
-#ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP
-#include "boost_no_two_phase_lookup.ipp"
-#else
-namespace boost_no_two_phase_name_lookup = empty_boost;
-#endif
-#ifndef BOOST_NO_TYPEID
-#include "boost_no_typeid.ipp"
-#else
-namespace boost_no_typeid = empty_boost;
-#endif
-#ifndef BOOST_NO_TYPENAME_WITH_CTOR
-#include "boost_no_typename_with_ctor.ipp"
+#ifndef BOOST_NO_CXX11_HDR_REGEX
+#include "boost_no_cxx11_hdr_regex.ipp"
 #else
-namespace boost_no_typename_with_ctor = empty_boost;
+namespace boost_no_cxx11_hdr_regex = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_UNICODE_LITERALS
-#include "boost_no_unicode_literals.ipp"
+#ifndef BOOST_NO_FENV_H
+#include "boost_no_fenv_h.ipp"
 #else
-namespace boost_no_cxx11_unicode_literals = empty_boost;
+namespace boost_no_fenv_h = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
-#include "boost_no_unified_init.ipp"
+#ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
+#include "boost_no_limits_const_exp.ipp"
 #else
-namespace boost_no_cxx11_unified_initialization_syntax = empty_boost;
+namespace boost_no_limits_compile_time_constants = empty_boost;
 #endif
-#ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
-#include "boost_no_using_breaks_adl.ipp"
+#ifndef BOOST_NO_CV_SPECIALIZATIONS
+#include "boost_no_cv_spec.ipp"
 #else
-namespace boost_function_scope_using_declaration_breaks_adl = empty_boost;
+namespace boost_no_cv_specializations = empty_boost;
 #endif
-#ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
-#include "boost_no_using_decl_overld.ipp"
+#ifndef BOOST_NO_CXX11_HDR_MUTEX
+#include "boost_no_cxx11_hdr_mutex.ipp"
 #else
-namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost;
+namespace boost_no_cxx11_hdr_mutex = empty_boost;
 #endif
 #ifndef BOOST_NO_USING_TEMPLATE
 #include "boost_no_using_template.ipp"
 #else
 namespace boost_no_using_template = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_VARIADIC_MACROS
-#include "boost_no_variadic_macros.ipp"
+#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
+#include "boost_no_exp_func_tem_arg.ipp"
 #else
-namespace boost_no_cxx11_variadic_macros = empty_boost;
+namespace boost_no_explicit_function_template_arguments = empty_boost;
 #endif
-#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
-#include "boost_no_variadic_templates.ipp"
+#ifndef BOOST_NO_ADL_BARRIER
+#include "boost_no_adl_barrier.ipp"
 #else
-namespace boost_no_cxx11_variadic_templates = empty_boost;
+namespace boost_no_adl_barrier = empty_boost;
 #endif
-#ifndef BOOST_NO_VOID_RETURNS
-#include "boost_no_void_returns.ipp"
+#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
+#include "boost_no_ops_in_namespace.ipp"
 #else
-namespace boost_no_void_returns = empty_boost;
+namespace boost_no_operators_in_namespace = empty_boost;
 #endif
-#ifndef BOOST_NO_INTRINSIC_WCHAR_T
-#include "boost_no_wchar_t.ipp"
+#ifndef BOOST_NO_IS_ABSTRACT
+#include "boost_no_is_abstract.ipp"
 #else
-namespace boost_no_intrinsic_wchar_t = empty_boost;
+namespace boost_no_is_abstract = empty_boost;
 #endif
 
-#ifdef BOOST_HAS_TWO_ARG_USE_FACET
-#include "boost_has_2arg_use_facet.ipp"
-#else
-namespace boost_has_two_arg_use_facet = empty_boost;
-#endif
-#ifdef BOOST_HAS_BETHREADS
-#include "boost_has_bethreads.ipp"
+#ifdef BOOST_HAS_SCHED_YIELD
+#include "boost_has_sched_yield.ipp"
 #else
-namespace boost_has_bethreads = empty_boost;
+namespace boost_has_sched_yield = empty_boost;
 #endif
-#ifdef BOOST_HAS_CLOCK_GETTIME
-#include "boost_has_clock_gettime.ipp"
+#ifdef BOOST_HAS_UNISTD_H
+#include "boost_has_unistd_h.ipp"
 #else
-namespace boost_has_clock_gettime = empty_boost;
+namespace boost_has_unistd_h = empty_boost;
 #endif
-#ifdef BOOST_HAS_DIRENT_H
-#include "boost_has_dirent_h.ipp"
+#ifdef BOOST_MSVC6_MEMBER_TEMPLATES
+#include "boost_has_vc6_mem_templ.ipp"
 #else
-namespace boost_has_dirent_h = empty_boost;
+namespace boost_msvc6_member_templates = empty_boost;
 #endif
-#ifdef BOOST_HAS_EXPM1
-#include "boost_has_expm1.ipp"
+#ifdef BOOST_HAS_TR1_RESULT_OF
+#include "boost_has_tr1_result_of.ipp"
 #else
-namespace boost_has_expm1 = empty_boost;
+namespace boost_has_tr1_result_of = empty_boost;
 #endif
-#ifdef BOOST_HAS_FTIME
-#include "boost_has_ftime.ipp"
+#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR
+#include "boost_has_part_alloc.ipp"
 #else
-namespace boost_has_ftime = empty_boost;
+namespace boost_has_partial_std_allocator = empty_boost;
 #endif
-#ifdef BOOST_HAS_GETSYSTEMTIMEASFILETIME
-#include "boost_has_getsystemtimeasfiletime.ipp"
+#ifdef BOOST_HAS_TR1_REGEX
+#include "boost_has_tr1_regex.ipp"
 #else
-namespace boost_has_getsystemtimeasfiletime = empty_boost;
+namespace boost_has_tr1_regex = empty_boost;
 #endif
-#ifdef BOOST_HAS_GETTIMEOFDAY
-#include "boost_has_gettimeofday.ipp"
+#ifdef BOOST_HAS_TR1_FUNCTION
+#include "boost_has_tr1_function.ipp"
 #else
-namespace boost_has_gettimeofday = empty_boost;
+namespace boost_has_tr1_function = empty_boost;
 #endif
-#ifdef BOOST_HAS_HASH
-#include "boost_has_hash.ipp"
+#ifdef BOOST_HAS_PTHREAD_YIELD
+#include "boost_has_pthread_yield.ipp"
 #else
-namespace boost_has_hash = empty_boost;
+namespace boost_has_pthread_yield = empty_boost;
 #endif
-#ifdef BOOST_HAS_LOG1P
-#include "boost_has_log1p.ipp"
+#ifdef BOOST_HAS_STATIC_ASSERT
+#include "boost_has_static_assert.ipp"
 #else
-namespace boost_has_log1p = empty_boost;
+namespace boost_has_static_assert = empty_boost;
 #endif
-#ifdef BOOST_HAS_LONG_LONG
-#include "boost_has_long_long.ipp"
+#ifdef BOOST_HAS_CLOCK_GETTIME
+#include "boost_has_clock_gettime.ipp"
 #else
-namespace boost_has_long_long = empty_boost;
+namespace boost_has_clock_gettime = empty_boost;
 #endif
-#ifdef BOOST_HAS_MACRO_USE_FACET
-#include "boost_has_macro_use_facet.ipp"
+#ifdef BOOST_HAS_SIGACTION
+#include "boost_has_sigaction.ipp"
 #else
-namespace boost_has_macro_use_facet = empty_boost;
+namespace boost_has_sigaction = empty_boost;
 #endif
-#ifdef BOOST_HAS_MS_INT64
-#include "boost_has_ms_int64.ipp"
+#ifdef BOOST_HAS_RVALUE_REFS
+#include "boost_has_rvalue_refs.ipp"
 #else
-namespace boost_has_ms_int64 = empty_boost;
+namespace boost_has_rvalue_refs = empty_boost;
 #endif
 #ifdef BOOST_HAS_NANOSLEEP
 #include "boost_has_nanosleep.ipp"
 #else
 namespace boost_has_nanosleep = empty_boost;
 #endif
-#ifdef BOOST_HAS_NL_TYPES_H
-#include "boost_has_nl_types_h.ipp"
+#ifdef BOOST_MSVC_STD_ITERATOR
+#include "boost_has_vc_iterator.ipp"
 #else
-namespace boost_has_nl_types_h = empty_boost;
+namespace boost_msvc_std_iterator = empty_boost;
 #endif
-#ifdef BOOST_HAS_NRVO
-#include "boost_has_nrvo.ipp"
+#ifdef BOOST_HAS_TR1_HASH
+#include "boost_has_tr1_hash.ipp"
 #else
-namespace boost_has_nrvo = empty_boost;
+namespace boost_has_tr1_hash = empty_boost;
 #endif
-#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR
-#include "boost_has_part_alloc.ipp"
+#ifdef BOOST_HAS_INT128
+#include "boost_has_int128.ipp"
 #else
-namespace boost_has_partial_std_allocator = empty_boost;
+namespace boost_has_int128 = empty_boost;
 #endif
-#ifdef BOOST_HAS_PTHREADS
-#include "boost_has_pthreads.ipp"
+#ifdef BOOST_HAS_STLP_USE_FACET
+#include "boost_has_stlp_use_facet.ipp"
 #else
-namespace boost_has_pthreads = empty_boost;
+namespace boost_has_stlp_use_facet = empty_boost;
 #endif
-#ifdef BOOST_HAS_PTHREAD_DELAY_NP
-#include "boost_has_pthread_delay_np.ipp"
+#ifdef BOOST_HAS_GETSYSTEMTIMEASFILETIME
+#include "boost_has_getsystemtimeasfiletime.ipp"
 #else
-namespace boost_has_pthread_delay_np = empty_boost;
+namespace boost_has_getsystemtimeasfiletime = empty_boost;
+#endif
+#ifdef BOOST_HAS_FTIME
+#include "boost_has_ftime.ipp"
+#else
+namespace boost_has_ftime = empty_boost;
 #endif
 #ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
 #include "boost_has_pthread_ma_st.ipp"
 #else
 namespace boost_has_pthread_mutexattr_settype = empty_boost;
 #endif
-#ifdef BOOST_HAS_PTHREAD_YIELD
-#include "boost_has_pthread_yield.ipp"
-#else
-namespace boost_has_pthread_yield = empty_boost;
-#endif
-#ifdef BOOST_HAS_RVALUE_REFS
-#include "boost_has_rvalue_refs.ipp"
-#else
-namespace boost_has_rvalue_refs = empty_boost;
-#endif
-#ifdef BOOST_HAS_SCHED_YIELD
-#include "boost_has_sched_yield.ipp"
-#else
-namespace boost_has_sched_yield = empty_boost;
-#endif
-#ifdef BOOST_HAS_SGI_TYPE_TRAITS
-#include "boost_has_sgi_type_traits.ipp"
+#ifdef BOOST_HAS_TR1_COMPLEX_OVERLOADS
+#include "boost_has_tr1_complex_over.ipp"
 #else
-namespace boost_has_sgi_type_traits = empty_boost;
+namespace boost_has_tr1_complex_overloads = empty_boost;
 #endif
-#ifdef BOOST_HAS_SIGACTION
-#include "boost_has_sigaction.ipp"
+#ifdef BOOST_HAS_BETHREADS
+#include "boost_has_bethreads.ipp"
 #else
-namespace boost_has_sigaction = empty_boost;
+namespace boost_has_bethreads = empty_boost;
 #endif
 #ifdef BOOST_HAS_SLIST
 #include "boost_has_slist.ipp"
 #else
 namespace boost_has_slist = empty_boost;
 #endif
-#ifdef BOOST_HAS_STATIC_ASSERT
-#include "boost_has_static_assert.ipp"
+#ifdef BOOST_HAS_DIRENT_H
+#include "boost_has_dirent_h.ipp"
 #else
-namespace boost_has_static_assert = empty_boost;
+namespace boost_has_dirent_h = empty_boost;
 #endif
-#ifdef BOOST_HAS_STDINT_H
-#include "boost_has_stdint_h.ipp"
+#ifdef BOOST_HAS_TR1_ARRAY
+#include "boost_has_tr1_array.ipp"
 #else
-namespace boost_has_stdint_h = empty_boost;
+namespace boost_has_tr1_array = empty_boost;
 #endif
-#ifdef BOOST_HAS_STLP_USE_FACET
-#include "boost_has_stlp_use_facet.ipp"
+#ifdef BOOST_HAS_TR1_UTILITY
+#include "boost_has_tr1_utility.ipp"
 #else
-namespace boost_has_stlp_use_facet = empty_boost;
+namespace boost_has_tr1_utility = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_ARRAY
-#include "boost_has_tr1_array.ipp"
+#ifdef BOOST_HAS_TR1_TUPLE
+#include "boost_has_tr1_tuple.ipp"
 #else
-namespace boost_has_tr1_array = empty_boost;
+namespace boost_has_tr1_tuple = empty_boost;
+#endif
+#ifdef BOOST_HAS_WINTHREADS
+#include "boost_has_winthreads.ipp"
+#else
+namespace boost_has_winthreads = empty_boost;
 #endif
 #ifdef BOOST_HAS_TR1_BIND
 #include "boost_has_tr1_bind.ipp"
 #else
 namespace boost_has_tr1_bind = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_COMPLEX_OVERLOADS
-#include "boost_has_tr1_complex_over.ipp"
+#ifdef BOOST_HAS_MS_INT64
+#include "boost_has_ms_int64.ipp"
 #else
-namespace boost_has_tr1_complex_overloads = empty_boost;
+namespace boost_has_ms_int64 = empty_boost;
+#endif
+#ifdef BOOST_HAS_LOG1P
+#include "boost_has_log1p.ipp"
+#else
+namespace boost_has_log1p = empty_boost;
+#endif
+#ifdef BOOST_HAS_STDINT_H
+#include "boost_has_stdint_h.ipp"
+#else
+namespace boost_has_stdint_h = empty_boost;
+#endif
+#ifdef BOOST_HAS_TR1_RANDOM
+#include "boost_has_tr1_random.ipp"
+#else
+namespace boost_has_tr1_random = empty_boost;
 #endif
 #ifdef BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG
 #include "boost_has_tr1_complex_trig.ipp"
 #else
 namespace boost_has_tr1_complex_inverse_trig = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_FUNCTION
-#include "boost_has_tr1_function.ipp"
+#ifdef BOOST_HAS_MACRO_USE_FACET
+#include "boost_has_macro_use_facet.ipp"
 #else
-namespace boost_has_tr1_function = empty_boost;
+namespace boost_has_macro_use_facet = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_HASH
-#include "boost_has_tr1_hash.ipp"
+#ifdef BOOST_HAS_EXPM1
+#include "boost_has_expm1.ipp"
 #else
-namespace boost_has_tr1_hash = empty_boost;
+namespace boost_has_expm1 = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_MEM_FN
-#include "boost_has_tr1_mem_fn.ipp"
+#ifdef BOOST_HAS_TWO_ARG_USE_FACET
+#include "boost_has_2arg_use_facet.ipp"
 #else
-namespace boost_has_tr1_mem_fn = empty_boost;
+namespace boost_has_two_arg_use_facet = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_RANDOM
-#include "boost_has_tr1_random.ipp"
+#ifdef BOOST_HAS_NL_TYPES_H
+#include "boost_has_nl_types_h.ipp"
 #else
-namespace boost_has_tr1_random = empty_boost;
+namespace boost_has_nl_types_h = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_REFERENCE_WRAPPER
-#include "boost_has_tr1_ref_wrap.ipp"
+#ifdef BOOST_HAS_HASH
+#include "boost_has_hash.ipp"
 #else
-namespace boost_has_tr1_reference_wrapper = empty_boost;
+namespace boost_has_hash = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_REGEX
-#include "boost_has_tr1_regex.ipp"
+#ifdef BOOST_HAS_LONG_LONG
+#include "boost_has_long_long.ipp"
 #else
-namespace boost_has_tr1_regex = empty_boost;
+namespace boost_has_long_long = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_RESULT_OF
-#include "boost_has_tr1_result_of.ipp"
+#ifdef BOOST_HAS_TR1_TYPE_TRAITS
+#include "boost_has_tr1_type_traits.ipp"
 #else
-namespace boost_has_tr1_result_of = empty_boost;
+namespace boost_has_tr1_type_traits = empty_boost;
 #endif
 #ifdef BOOST_HAS_TR1_SHARED_PTR
 #include "boost_has_tr1_shared_ptr.ipp"
 #else
 namespace boost_has_tr1_shared_ptr = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_TUPLE
-#include "boost_has_tr1_tuple.ipp"
+#ifdef BOOST_HAS_NRVO
+#include "boost_has_nrvo.ipp"
 #else
-namespace boost_has_tr1_tuple = empty_boost;
+namespace boost_has_nrvo = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_TYPE_TRAITS
-#include "boost_has_tr1_type_traits.ipp"
+#ifdef BOOST_HAS_PTHREADS
+#include "boost_has_pthreads.ipp"
 #else
-namespace boost_has_tr1_type_traits = empty_boost;
+namespace boost_has_pthreads = empty_boost;
+#endif
+#ifdef BOOST_HAS_TR1_UNORDERED_SET
+#include "boost_has_tr1_unordered_set.ipp"
+#else
+namespace boost_has_tr1_unordered_set = empty_boost;
 #endif
 #ifdef BOOST_HAS_TR1_UNORDERED_MAP
 #include "boost_has_tr1_unordered_map.ipp"
 #else
 namespace boost_has_tr1_unordered_map = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_UNORDERED_SET
-#include "boost_has_tr1_unordered_set.ipp"
+#ifdef BOOST_HAS_PTHREAD_DELAY_NP
+#include "boost_has_pthread_delay_np.ipp"
 #else
-namespace boost_has_tr1_unordered_set = empty_boost;
+namespace boost_has_pthread_delay_np = empty_boost;
 #endif
-#ifdef BOOST_HAS_TR1_UTILITY
-#include "boost_has_tr1_utility.ipp"
+#ifdef BOOST_HAS_GETTIMEOFDAY
+#include "boost_has_gettimeofday.ipp"
 #else
-namespace boost_has_tr1_utility = empty_boost;
+namespace boost_has_gettimeofday = empty_boost;
 #endif
-#ifdef BOOST_HAS_UNISTD_H
-#include "boost_has_unistd_h.ipp"
+#ifdef BOOST_HAS_TR1_MEM_FN
+#include "boost_has_tr1_mem_fn.ipp"
 #else
-namespace boost_has_unistd_h = empty_boost;
+namespace boost_has_tr1_mem_fn = empty_boost;
 #endif
 #ifdef BOOST_HAS_VARIADIC_TMPL
 #include "boost_has_variadic_tmpl.ipp"
 #else
 namespace boost_has_variadic_tmpl = empty_boost;
 #endif
-#ifdef BOOST_MSVC6_MEMBER_TEMPLATES
-#include "boost_has_vc6_mem_templ.ipp"
-#else
-namespace boost_msvc6_member_templates = empty_boost;
-#endif
-#ifdef BOOST_MSVC_STD_ITERATOR
-#include "boost_has_vc_iterator.ipp"
+#ifdef BOOST_HAS_TR1_REFERENCE_WRAPPER
+#include "boost_has_tr1_ref_wrap.ipp"
 #else
-namespace boost_msvc_std_iterator = empty_boost;
+namespace boost_has_tr1_reference_wrapper = empty_boost;
 #endif
-#ifdef BOOST_HAS_WINTHREADS
-#include "boost_has_winthreads.ipp"
+#ifdef BOOST_HAS_SGI_TYPE_TRAITS
+#include "boost_has_sgi_type_traits.ipp"
 #else
-namespace boost_has_winthreads = empty_boost;
+namespace boost_has_sgi_type_traits = empty_boost;
 #endif
 
 int main( int, char *[] )
 {
- if(0 != boost_has_two_arg_use_facet::test())
- {
- std::cerr << "Failed test for BOOST_HAS_TWO_ARG_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
- ++error_count;
- }
- if(0 != boost_has_bethreads::test())
+ if(0 != boost_has_sched_yield::test())
    {
- std::cerr << "Failed test for BOOST_HAS_BETHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_SCHED_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_clock_gettime::test())
+ if(0 != boost_no_limits::test())
    {
- std::cerr << "Failed test for BOOST_HAS_CLOCK_GETTIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_dirent_h::test())
+ if(0 != boost_no_iostream::test())
    {
- std::cerr << "Failed test for BOOST_HAS_DIRENT_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_IOSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_expm1::test())
+ if(0 != boost_no_cxx11_hdr_chrono::test())
    {
- std::cerr << "Failed test for BOOST_HAS_EXPM1 at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CHRONO at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_ftime::test())
+ if(0 != boost_has_unistd_h::test())
    {
- std::cerr << "Failed test for BOOST_HAS_FTIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_UNISTD_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_getsystemtimeasfiletime::test())
+ if(0 != boost_msvc6_member_templates::test())
    {
- std::cerr << "Failed test for BOOST_HAS_GETSYSTEMTIMEASFILETIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_MSVC6_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_gettimeofday::test())
+ if(0 != boost_no_cxx11_hdr_functional::test())
    {
- std::cerr << "Failed test for BOOST_HAS_GETTIMEOFDAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUNCTIONAL at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_hash::test())
+ if(0 != boost_has_tr1_result_of::test())
    {
- std::cerr << "Failed test for BOOST_HAS_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_RESULT_OF at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_log1p::test())
+ if(0 != boost_has_partial_std_allocator::test())
    {
- std::cerr << "Failed test for BOOST_HAS_LOG1P at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_PARTIAL_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_long_long::test())
+ if(0 != boost_has_tr1_regex::test())
    {
- std::cerr << "Failed test for BOOST_HAS_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_macro_use_facet::test())
+ if(0 != boost_has_tr1_function::test())
    {
- std::cerr << "Failed test for BOOST_HAS_MACRO_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_FUNCTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_ms_int64::test())
+ if(0 != boost_no_ctype_functions::test())
    {
- std::cerr << "Failed test for BOOST_HAS_MS_INT64 at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CTYPE_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_nanosleep::test())
+ if(0 != boost_no_templated_iostreams::test())
    {
- std::cerr << "Failed test for BOOST_HAS_NANOSLEEP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TEMPLATED_IOSTREAMS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_nl_types_h::test())
+ if(0 != boost_no_cxx11_unicode_literals::test())
    {
- std::cerr << "Failed test for BOOST_HAS_NL_TYPES_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_UNICODE_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_nrvo::test())
+ if(0 != boost_has_pthread_yield::test())
    {
- std::cerr << "Failed test for BOOST_HAS_NRVO at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_PTHREAD_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_partial_std_allocator::test())
+ if(0 != boost_no_typename_with_ctor::test())
    {
- std::cerr << "Failed test for BOOST_HAS_PARTIAL_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TYPENAME_WITH_CTOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_pthreads::test())
+ if(0 != boost_no_array_type_specializations::test())
    {
- std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_pthread_delay_np::test())
+ if(0 != boost_no_cxx11_hdr_ratio::test())
    {
- std::cerr << "Failed test for BOOST_HAS_PTHREAD_DELAY_NP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RATIO at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_pthread_mutexattr_settype::test())
+ if(0 != boost_no_iosfwd::test())
    {
- std::cerr << "Failed test for BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_IOSFWD at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_pthread_yield::test())
+ if(0 != boost_no_std_iterator_traits::test())
    {
- std::cerr << "Failed test for BOOST_HAS_PTHREAD_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_rvalue_refs::test())
+ if(0 != boost_no_std_distance::test())
    {
- std::cerr << "Failed test for BOOST_HAS_RVALUE_REFS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_DISTANCE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_sched_yield::test())
+ if(0 != boost_no_cxx11_hdr_array::test())
    {
- std::cerr << "Failed test for BOOST_HAS_SCHED_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_sgi_type_traits::test())
+ if(0 != boost_no_cxx11_hdr_unordered_map::test())
    {
- std::cerr << "Failed test for BOOST_HAS_SGI_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_sigaction::test())
+ if(0 != boost_no_cxx11_hdr_random::test())
    {
- std::cerr << "Failed test for BOOST_HAS_SIGACTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_slist::test())
+ if(0 != boost_no_cxx11_numeric_limits::test())
    {
- std::cerr << "Failed test for BOOST_HAS_SLIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    if(0 != boost_has_static_assert::test())
@@ -1021,229 +1016,209 @@
       std::cerr << "Failed test for BOOST_HAS_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_stdint_h::test())
- {
- std::cerr << "Failed test for BOOST_HAS_STDINT_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
- ++error_count;
- }
- if(0 != boost_has_stlp_use_facet::test())
- {
- std::cerr << "Failed test for BOOST_HAS_STLP_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
- ++error_count;
- }
- if(0 != boost_has_tr1_array::test())
- {
- std::cerr << "Failed test for BOOST_HAS_TR1_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
- ++error_count;
- }
- if(0 != boost_has_tr1_bind::test())
- {
- std::cerr << "Failed test for BOOST_HAS_TR1_BIND at: " << __FILE__ << ":" << __LINE__ << std::endl;
- ++error_count;
- }
- if(0 != boost_has_tr1_complex_overloads::test())
+ if(0 != boost_no_private_in_aggregate::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_OVERLOADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_PRIVATE_IN_AGGREGATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_complex_inverse_trig::test())
+ if(0 != boost_no_function_template_ordering::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_FUNCTION_TEMPLATE_ORDERING at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_function::test())
+ if(0 != boost_has_clock_gettime::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_FUNCTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_CLOCK_GETTIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_hash::test())
+ if(0 != boost_no_member_template_keyword::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_KEYWORD at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_mem_fn::test())
+ if(0 != boost_has_sigaction::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_MEM_FN at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_SIGACTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_random::test())
+ if(0 != boost_no_cxx11_variadic_macros::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_MACROS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_reference_wrapper::test())
+ if(0 != boost_no_cxx11_hdr_initializer_list::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_REFERENCE_WRAPPER at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_INITIALIZER_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_regex::test())
+ if(0 != boost_has_rvalue_refs::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_RVALUE_REFS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_result_of::test())
+ if(0 != boost_no_template_templates::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_RESULT_OF at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TEMPLATE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_shared_ptr::test())
+ if(0 != boost_has_nanosleep::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_SHARED_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_NANOSLEEP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_tuple::test())
+ if(0 != boost_no_cxx11_hdr_forward_list::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FORWARD_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_type_traits::test())
+ if(0 != boost_no_templated_iterator_constructors::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_unordered_map::test())
+ if(0 != boost_msvc_std_iterator::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_MSVC_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_unordered_set::test())
+ if(0 != boost_has_tr1_hash::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_tr1_utility::test())
+ if(0 != boost_no_cxx11_defaulted_functions::test())
    {
- std::cerr << "Failed test for BOOST_HAS_TR1_UTILITY at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_unistd_h::test())
+ if(0 != boost_no_sfinae::test())
    {
- std::cerr << "Failed test for BOOST_HAS_UNISTD_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_SFINAE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_variadic_tmpl::test())
+ if(0 != boost_no_stringstream::test())
    {
- std::cerr << "Failed test for BOOST_HAS_VARIADIC_TMPL at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STRINGSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_msvc6_member_templates::test())
+ if(0 != boost_has_int128::test())
    {
- std::cerr << "Failed test for BOOST_MSVC6_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_INT128 at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_msvc_std_iterator::test())
+ if(0 != boost_no_cxx11_range_based_for::test())
    {
- std::cerr << "Failed test for BOOST_MSVC_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_RANGE_BASED_FOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_has_winthreads::test())
+ if(0 != boost_has_stlp_use_facet::test())
    {
- std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_STLP_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_adl_barrier::test())
+ if(0 != boost_no_cxx11_variadic_templates::test())
    {
- std::cerr << "Failed test for BOOST_NO_ADL_BARRIER at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_argument_dependent_lookup::test())
+ if(0 != boost_no_cxx11_noexcept::test())
    {
- std::cerr << "Failed test for BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_NOEXCEPT at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_array_type_specializations::test())
+ if(0 != boost_no_cxx11_auto_multideclarations::test())
    {
- std::cerr << "Failed test for BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_auto_declarations::test())
+ if(0 != boost_no_partial_specialization_implicit_default_args::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_DECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_auto_multideclarations::test())
+ if(0 != boost_has_getsystemtimeasfiletime::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_GETSYSTEMTIMEASFILETIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_auto_ptr::test())
+ if(0 != boost_function_scope_using_declaration_breaks_adl::test())
    {
- std::cerr << "Failed test for BOOST_NO_AUTO_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_bcb_partial_specialization_bug::test())
+ if(0 != boost_no_std_locale::test())
    {
- std::cerr << "Failed test for BOOST_BCB_PARTIAL_SPECIALIZATION_BUG at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_LOCALE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_char16_t::test())
+ if(0 != boost_no_long_long_numeric_limits::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_CHAR16_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_LONG_LONG_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_char32_t::test())
+ if(0 != boost_no_cxx11_unified_initialization_syntax::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_CHAR32_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_complete_value_initialization::test())
+ if(0 != boost_no_cxx11_explicit_conversion_operators::test())
    {
- std::cerr << "Failed test for BOOST_NO_COMPLETE_VALUE_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_constexpr::test())
+ if(0 != boost_has_ftime::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_FTIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_ctype_functions::test())
+ if(0 != boost_no_nested_friendship::test())
    {
- std::cerr << "Failed test for BOOST_NO_CTYPE_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cv_specializations::test())
+ if(0 != boost_no_cxx11_allocator::test())
    {
- std::cerr << "Failed test for BOOST_NO_CV_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cv_void_specializations::test())
+ if(0 != boost_no_cxx11_hdr_type_traits::test())
    {
- std::cerr << "Failed test for BOOST_NO_CV_VOID_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cwchar::test())
+ if(0 != boost_has_pthread_mutexattr_settype::test())
    {
- std::cerr << "Failed test for BOOST_NO_CWCHAR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cwctype::test())
+ if(0 != boost_no_cxx11_hdr_future::test())
    {
- std::cerr << "Failed test for BOOST_NO_CWCTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUTURE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_allocator::test())
+ if(0 != boost_no_member_function_specializations::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_atomic_smart_ptr::test())
+ if(0 != boost_has_tr1_complex_overloads::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_ATOMIC_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_OVERLOADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_array::test())
+ if(0 != boost_no_std_iterator::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_chrono::test())
+ if(0 != boost_no_exceptions::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CHRONO at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_codecvt::test())
+ if(0 != boost_has_bethreads::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CODECVT at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_BETHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    if(0 != boost_no_cxx11_hdr_condition_variable::test())
@@ -1251,109 +1226,109 @@
       std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CONDITION_VARIABLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_forward_list::test())
+ if(0 != boost_no_intrinsic_wchar_t::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FORWARD_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_INTRINSIC_WCHAR_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_future::test())
+ if(0 != boost_no_std_allocator::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUTURE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_initializer_list::test())
+ if(0 != boost_no_cxx11_function_template_default_args::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_INITIALIZER_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_mutex::test())
+ if(0 != boost_no_cxx11_template_aliases::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_MUTEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_TEMPLATE_ALIASES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_random::test())
+ if(0 != boost_has_slist::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_SLIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_ratio::test())
+ if(0 != boost_has_dirent_h::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RATIO at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_DIRENT_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_regex::test())
+ if(0 != boost_no_cv_void_specializations::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CV_VOID_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_system_error::test())
+ if(0 != boost_no_cxx11_smart_ptr::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_SYSTEM_ERROR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_thread::test())
+ if(0 != boost_has_tr1_array::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_THREAD at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_tuple::test())
+ if(0 != boost_has_tr1_utility::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_UTILITY at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_typeindex::test())
+ if(0 != boost_has_tr1_tuple::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_type_traits::test())
+ if(0 != boost_no_cxx11_hdr_thread::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_THREAD at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_unordered_map::test())
+ if(0 != boost_has_winthreads::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_unordered_set::test())
+ if(0 != boost_no_auto_ptr::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_AUTO_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_smart_ptr::test())
+ if(0 != boost_has_tr1_bind::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_BIND at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_hdr_functional::test())
+ if(0 != boost_no_cxx11_raw_literals::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUNCTIONAL at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_RAW_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_decltype::test())
+ if(0 != boost_no_std_wstring::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_WSTRING at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_decltype_n3276::test())
+ if(0 != boost_no_std_typeinfo::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE_N3276 at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_TYPEINFO at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_deduced_typename::test())
+ if(0 != boost_no_cxx11_decltype_n3276::test())
    {
- std::cerr << "Failed test for BOOST_DEDUCED_TYPENAME at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE_N3276 at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_defaulted_functions::test())
+ if(0 != boost_no_cxx11_atomic_smart_ptr::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_ATOMIC_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_deleted_functions::test())
+ if(0 != boost_no_cxx11_rvalue_references::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_DELETED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_RVALUE_REFERENCES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    if(0 != boost_no_dependent_nested_derivations::test())
@@ -1361,124 +1336,129 @@
       std::cerr << "Failed test for BOOST_NO_DEPENDENT_NESTED_DERIVATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_dependent_types_in_template_value_parameters::test())
+ if(0 != boost_no_cxx11_hdr_system_error::test())
    {
- std::cerr << "Failed test for BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_SYSTEM_ERROR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_exceptions::test())
+ if(0 != boost_has_ms_int64::test())
    {
- std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_MS_INT64 at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_exception_std_namespace::test())
+ if(0 != boost_has_log1p::test())
    {
- std::cerr << "Failed test for BOOST_NO_EXCEPTION_STD_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_LOG1P at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_explicit_conversion_operators::test())
+ if(0 != boost_has_stdint_h::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_STDINT_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_explicit_function_template_arguments::test())
+ if(0 != boost_no_long_long::test())
    {
- std::cerr << "Failed test for BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_extern_template::test())
+ if(0 != boost_no_typeid::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_EXTERN_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TYPEID at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_fenv_h::test())
+ if(0 != boost_no_cxx11_hdr_tuple::test())
    {
- std::cerr << "Failed test for BOOST_NO_FENV_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_function_template_default_args::test())
+ if(0 != boost_no_two_phase_name_lookup::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TWO_PHASE_NAME_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_function_type_specializations::test())
+ if(0 != boost_no_sfinae_expr::test())
    {
- std::cerr << "Failed test for BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_SFINAE_EXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_function_template_ordering::test())
+ if(0 != boost_has_tr1_random::test())
    {
- std::cerr << "Failed test for BOOST_NO_FUNCTION_TEMPLATE_ORDERING at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_ms_int64_numeric_limits::test())
+ if(0 != boost_no_function_type_specializations::test())
    {
- std::cerr << "Failed test for BOOST_NO_MS_INT64_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_inclass_member_initialization::test())
+ if(0 != boost_no_cxx11_deleted_functions::test())
    {
- std::cerr << "Failed test for BOOST_NO_INCLASS_MEMBER_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_DELETED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_integral_int64_t::test())
+ if(0 != boost_has_tr1_complex_inverse_trig::test())
    {
- std::cerr << "Failed test for BOOST_NO_INTEGRAL_INT64_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_iosfwd::test())
+ if(0 != boost_has_macro_use_facet::test())
    {
- std::cerr << "Failed test for BOOST_NO_IOSFWD at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_MACRO_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_iostream::test())
+ if(0 != boost_no_rtti::test())
+ {
+ std::cerr << "Failed test for BOOST_NO_RTTI at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
+ if(0 != boost_has_expm1::test())
    {
- std::cerr << "Failed test for BOOST_NO_IOSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_EXPM1 at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_is_abstract::test())
+ if(0 != boost_no_cxx11_char16_t::test())
    {
- std::cerr << "Failed test for BOOST_NO_IS_ABSTRACT at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_CHAR16_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_templated_iterator_constructors::test())
+ if(0 != boost_no_cxx11_auto_declarations::test())
    {
- std::cerr << "Failed test for BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_DECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_lambdas::test())
+ if(0 != boost_no_member_template_friends::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_limits::test())
+ if(0 != boost_no_pointer_to_member_template_parameters::test())
    {
- std::cerr << "Failed test for BOOST_NO_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_limits_compile_time_constants::test())
+ if(0 != boost_no_inclass_member_initialization::test())
    {
- std::cerr << "Failed test for BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_INCLASS_MEMBER_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_numeric_limits::test())
+ if(0 != boost_no_swprintf::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_SWPRINTF at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_long_long_numeric_limits::test())
+ if(0 != boost_no_std_use_facet::test())
    {
- std::cerr << "Failed test for BOOST_NO_LONG_LONG_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_long_long::test())
+ if(0 != boost_has_two_arg_use_facet::test())
    {
- std::cerr << "Failed test for BOOST_NO_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TWO_ARG_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_member_function_specializations::test())
+ if(0 != boost_has_nl_types_h::test())
    {
- std::cerr << "Failed test for BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_NL_TYPES_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    if(0 != boost_no_member_templates::test())
@@ -1486,104 +1466,104 @@
       std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_member_template_friends::test())
+ if(0 != boost_no_cwchar::test())
    {
- std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CWCHAR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_member_template_keyword::test())
+ if(0 != boost_no_cxx11_constexpr::test())
    {
- std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_KEYWORD at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_pointer_to_member_template_parameters::test())
+ if(0 != boost_no_std_output_iterator_assign::test())
    {
- std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_nested_friendship::test())
+ if(0 != boost_no_stdc_namespace::test())
    {
- std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_noexcept::test())
+ if(0 != boost_no_cxx11_nullptr::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_NOEXCEPT at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_NULLPTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_nullptr::test())
+ if(0 != boost_has_hash::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_NULLPTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_operators_in_namespace::test())
+ if(0 != boost_has_long_long::test())
    {
- std::cerr << "Failed test for BOOST_NO_OPERATORS_IN_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_template_partial_specialization::test())
+ if(0 != boost_has_tr1_type_traits::test())
    {
- std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_partial_specialization_implicit_default_args::test())
+ if(0 != boost_no_cxx11_hdr_unordered_set::test())
    {
- std::cerr << "Failed test for BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_private_in_aggregate::test())
+ if(0 != boost_bcb_partial_specialization_bug::test())
    {
- std::cerr << "Failed test for BOOST_NO_PRIVATE_IN_AGGREGATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_BCB_PARTIAL_SPECIALIZATION_BUG at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_pointer_to_member_const::test())
+ if(0 != boost_no_std_wstreambuf::test())
    {
- std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_CONST at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_WSTREAMBUF at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_range_based_for::test())
+ if(0 != boost_no_dependent_types_in_template_value_parameters::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_RANGE_BASED_FOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_raw_literals::test())
+ if(0 != boost_no_cxx11_hdr_typeindex::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_RAW_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_unreachable_return_detection::test())
+ if(0 != boost_has_tr1_shared_ptr::test())
    {
- std::cerr << "Failed test for BOOST_NO_UNREACHABLE_RETURN_DETECTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_SHARED_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_rtti::test())
+ if(0 != boost_has_nrvo::test())
    {
- std::cerr << "Failed test for BOOST_NO_RTTI at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_NRVO at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_rvalue_references::test())
+ if(0 != boost_no_cxx11_char32_t::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_RVALUE_REFERENCES at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_CHAR32_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_scoped_enums::test())
+ if(0 != boost_no_complete_value_initialization::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_SCOPED_ENUMS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_COMPLETE_VALUE_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_sfinae::test())
+ if(0 != boost_deduced_typename::test())
    {
- std::cerr << "Failed test for BOOST_NO_SFINAE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_DEDUCED_TYPENAME at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_sfinae_expr::test())
+ if(0 != boost_no_exception_std_namespace::test())
    {
- std::cerr << "Failed test for BOOST_NO_SFINAE_EXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_EXCEPTION_STD_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_stringstream::test())
+ if(0 != boost_no_std_min_max::test())
    {
- std::cerr << "Failed test for BOOST_NO_STRINGSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_MIN_MAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    if(0 != boost_no_cxx11_static_assert::test())
@@ -1591,94 +1571,94 @@
       std::cerr << "Failed test for BOOST_NO_CXX11_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_stdc_namespace::test())
+ if(0 != boost_has_pthreads::test())
    {
- std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_allocator::test())
+ if(0 != boost_no_cxx11_lambdas::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_distance::test())
+ if(0 != boost_no_argument_dependent_lookup::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_DISTANCE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_iterator::test())
+ if(0 != boost_no_cxx11_scoped_enums::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_SCOPED_ENUMS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_iterator_traits::test())
+ if(0 != boost_no_cxx11_extern_template::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_EXTERN_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_locale::test())
+ if(0 != boost_no_integral_int64_t::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_LOCALE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_INTEGRAL_INT64_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_messages::test())
+ if(0 != boost_no_cxx11_hdr_codecvt::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_MESSAGES at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CODECVT at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_min_max::test())
+ if(0 != boost_no_using_declaration_overloads_from_typename_base::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_MIN_MAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_output_iterator_assign::test())
+ if(0 != boost_has_tr1_unordered_set::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_typeinfo::test())
+ if(0 != boost_no_cwctype::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_TYPEINFO at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CWCTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_unordered::test())
+ if(0 != boost_no_pointer_to_member_const::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_UNORDERED at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_CONST at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_use_facet::test())
+ if(0 != boost_no_void_returns::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_VOID_RETURNS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_wstreambuf::test())
+ if(0 != boost_no_std_messages::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_WSTREAMBUF at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_STD_MESSAGES at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_std_wstring::test())
+ if(0 != boost_no_cxx11_decltype::test())
    {
- std::cerr << "Failed test for BOOST_NO_STD_WSTRING at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_swprintf::test())
+ if(0 != boost_no_template_partial_specialization::test())
    {
- std::cerr << "Failed test for BOOST_NO_SWPRINTF at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_template_aliases::test())
+ if(0 != boost_has_tr1_unordered_map::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_TEMPLATE_ALIASES at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_templated_iostreams::test())
+ if(0 != boost_no_unreachable_return_detection::test())
    {
- std::cerr << "Failed test for BOOST_NO_TEMPLATED_IOSTREAMS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_UNREACHABLE_RETURN_DETECTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_template_templates::test())
+ if(0 != boost_no_ms_int64_numeric_limits::test())
    {
- std::cerr << "Failed test for BOOST_NO_TEMPLATE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_MS_INT64_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    if(0 != boost_no_cxx11_local_class_template_parameters::test())
@@ -1686,64 +1666,84 @@
       std::cerr << "Failed test for BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_two_phase_name_lookup::test())
+ if(0 != boost_no_cxx11_hdr_regex::test())
    {
- std::cerr << "Failed test for BOOST_NO_TWO_PHASE_NAME_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_typeid::test())
+ if(0 != boost_no_fenv_h::test())
    {
- std::cerr << "Failed test for BOOST_NO_TYPEID at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_FENV_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_typename_with_ctor::test())
+ if(0 != boost_no_limits_compile_time_constants::test())
    {
- std::cerr << "Failed test for BOOST_NO_TYPENAME_WITH_CTOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_unicode_literals::test())
+ if(0 != boost_no_cv_specializations::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_UNICODE_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CV_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_unified_initialization_syntax::test())
+ if(0 != boost_no_cxx11_hdr_mutex::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_CXX11_HDR_MUTEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_function_scope_using_declaration_breaks_adl::test())
+ if(0 != boost_has_pthread_delay_np::test())
    {
- std::cerr << "Failed test for BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_PTHREAD_DELAY_NP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_using_declaration_overloads_from_typename_base::test())
+ if(0 != boost_no_using_template::test())
    {
- std::cerr << "Failed test for BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_USING_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_using_template::test())
+ if(0 != boost_no_explicit_function_template_arguments::test())
    {
- std::cerr << "Failed test for BOOST_NO_USING_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_variadic_macros::test())
+ if(0 != boost_has_gettimeofday::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_MACROS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_GETTIMEOFDAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_cxx11_variadic_templates::test())
+ if(0 != boost_has_tr1_mem_fn::test())
    {
- std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_TR1_MEM_FN at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_void_returns::test())
+ if(0 != boost_no_adl_barrier::test())
    {
- std::cerr << "Failed test for BOOST_NO_VOID_RETURNS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_NO_ADL_BARRIER at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
- if(0 != boost_no_intrinsic_wchar_t::test())
+ if(0 != boost_has_variadic_tmpl::test())
    {
- std::cerr << "Failed test for BOOST_NO_INTRINSIC_WCHAR_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ std::cerr << "Failed test for BOOST_HAS_VARIADIC_TMPL at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
+ if(0 != boost_has_tr1_reference_wrapper::test())
+ {
+ std::cerr << "Failed test for BOOST_HAS_TR1_REFERENCE_WRAPPER at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
+ if(0 != boost_has_sgi_type_traits::test())
+ {
+ std::cerr << "Failed test for BOOST_HAS_SGI_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
+ if(0 != boost_no_operators_in_namespace::test())
+ {
+ std::cerr << "Failed test for BOOST_NO_OPERATORS_IN_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
+ if(0 != boost_no_is_abstract::test())
+ {
+ std::cerr << "Failed test for BOOST_NO_IS_ABSTRACT at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
    return error_count;

Deleted: branches/release/libs/config/test/no_std_unordered_fail.cpp
==============================================================================
--- branches/release/libs/config/test/no_std_unordered_fail.cpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
+++ (empty file)
@@ -1,37 +0,0 @@
-// This file was automatically generated on Tue Dec 16 16:41:40 2008
-// by libs/config/tools/generate.cpp
-// Copyright John Maddock 2002-4.
-// 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)
-
-// See http://www.boost.org/libs/config for the most recent version.//
-// Revision $Id: generate.cpp 49281 2008-10-11 15:40:44Z johnmaddock $
-//
-
-
-// Test file for macro BOOST_NO_STD_UNORDERED
-// This file should not compile, if it does then
-// BOOST_NO_STD_UNORDERED should not be defined.
-// See file boost_no_std_unordered.ipp for details
-
-// Must not have BOOST_ASSERT_CONFIG set; it defeats
-// the objective of this file:
-#ifdef BOOST_ASSERT_CONFIG
-# undef BOOST_ASSERT_CONFIG
-#endif
-
-#include <boost/config.hpp>
-#include "test.hpp"
-
-#ifdef BOOST_NO_STD_UNORDERED
-#include "boost_no_std_unordered.ipp"
-#else
-#error "this file should not compile"
-#endif
-
-int main( int, char *[] )
-{
- return boost_no_std_unordered::test();
-}
-

Deleted: branches/release/libs/config/test/no_std_unordered_pass.cpp
==============================================================================
--- branches/release/libs/config/test/no_std_unordered_pass.cpp 2012-12-10 12:26:30 EST (Mon, 10 Dec 2012)
+++ (empty file)
@@ -1,37 +0,0 @@
-// This file was automatically generated on Tue Dec 16 16:41:40 2008
-// by libs/config/tools/generate.cpp
-// Copyright John Maddock 2002-4.
-// 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)
-
-// See http://www.boost.org/libs/config for the most recent version.//
-// Revision $Id: generate.cpp 49281 2008-10-11 15:40:44Z johnmaddock $
-//
-
-
-// Test file for macro BOOST_NO_STD_UNORDERED
-// This file should compile, if it does not then
-// BOOST_NO_STD_UNORDERED should be defined.
-// See file boost_no_std_unordered.ipp for details
-
-// Must not have BOOST_ASSERT_CONFIG set; it defeats
-// the objective of this file:
-#ifdef BOOST_ASSERT_CONFIG
-# undef BOOST_ASSERT_CONFIG
-#endif
-
-#include <boost/config.hpp>
-#include "test.hpp"
-
-#ifndef BOOST_NO_STD_UNORDERED
-#include "boost_no_std_unordered.ipp"
-#else
-namespace boost_no_std_unordered = empty_boost;
-#endif
-
-int main( int, char *[] )
-{
- return boost_no_std_unordered::test();
-}
-


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk