From 8c880467e1c9c94e4d8ec4104ce8756909fffc7c Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 6 Sep 2001 03:56:53 +0000 Subject: [PATCH] put the MacOS X c++ compiler (which is a derivative of g++ 2.95.2) down as not supporting wchar_t. This is because the wchar.h header file does not get installed :( [SVN r11041] --- include/boost/config.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/config.hpp b/include/boost/config.hpp index ed724967..8e8e966c 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -596,6 +596,10 @@ # define BOOST_SYSTEM_HAS_STDINT_H #endif +#ifdef __APPLE_CC__ +#define BOOST_NO_INTRINSIC_WCHAR_T +#endif + #ifndef BOOST_STD_EXTENSION_NAMESPACE # define BOOST_STD_EXTENSION_NAMESPACE std #endif