Fix standard C library check so it will work with CodeWarrior Pro 8.

[SVN r15972]
This commit is contained in:
Darin Adler
2002-10-23 23:32:38 +00:00
parent f72495d8b5
commit 253bd15cf1

View File

@ -9,8 +9,9 @@
#define BOOST_PLATFORM "Mac OS"
// If __MACH__, we're using the BSD standard C library, not the MSL:
#if __MACH__
#if __MACH__ && !defined(_MSL_USING_MSL_C)
// Using the Mac OS X system BSD-style C library.
# define BOOST_NO_CTYPE_FUNCTIONS
# define BOOST_NO_CWCHAR
@ -41,6 +42,8 @@
#else
// Using the MSL C library.
// We will eventually support threads in non-Carbon builds, but we do
// not support this yet.
# if TARGET_CARBON