--- boost/config/compiler/clang.hpp
+++ boost/config/compiler/clang.hpp
# define BOOST_NO_CXX11_INLINE_NAMESPACES
+// Apple Clang uses libc++ by default on Mavericks (OS X 10.9) and higher
+// Apple Clang uses libstdc++ by default on Mountain Lion (OS X 10.8) and lower
+# define BOOST_APPLE_CLANG_NO_LIBCXX
#if !__has_feature(cxx_override_control)
# define BOOST_NO_CXX11_FINAL
--- boost/multi_index/detail/vartempl_support.hpp
+++ boost/multi_index/detail/vartempl_support.hpp
#include <boost/config.hpp>
#if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)||\
- defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
+ defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)||\
+ defined(BOOST_APPLE_CLANG_NO_LIBCXX)
#include <boost/move/core.hpp>
#include <boost/move/utility.hpp>
#include <boost/preprocessor/arithmetic/add.hpp>
#include <boost/preprocessor/arithmetic/sub.hpp>