Attempt to fix Apple buildit bots
llvm-svn: 294731
diff --git a/libcxx/src/new.cpp b/libcxx/src/new.cpp
index cb8e3ae..5a4686d 100644
--- a/libcxx/src/new.cpp
+++ b/libcxx/src/new.cpp
@@ -23,7 +23,11 @@
#elif defined(__GLIBCXX__)
// nothing todo
#else
-#include "support/runtime/new_handler_fallback.ipp"
+# if defined(__APPLE__) && !defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY)
+# include <cxxabi.h> // FIXME: remove this once buildit is gone.
+# else
+# include "support/runtime/new_handler_fallback.ipp"
+# endif
#endif
namespace std