Add BOOST_NO_CTYPE_FUNCTIONS.

[SVN r11233]
This commit is contained in:
Darin Adler
2001-09-24 19:20:53 +00:00
parent 419956836b
commit b39d9ae568
2 changed files with 10 additions and 10 deletions

View File

@ -29,8 +29,11 @@
#endif
//
// no wide character support:
// No wide character support in the BSD header files:
//
#define BOOST_NO_CWCHAR
//
// The BSD <ctype.h> has macros only, no functions:
//
#define BOOST_NO_CTYPE_FUNCTIONS

View File

@ -9,18 +9,15 @@
#define BOOST_PLATFORM "Mac OS"
// if __MACH__, we're using the BSD standard C library, not the MSL
// If __MACH__, we're using the BSD standard C library, not the MSL:
#if defined(__MACH__)
# define BOOST_HAS_UNISTD_H
# define BOOST_NO_CTYPE_FUNCTIONS
# define BOOST_NO_CWCHAR
# define BOOST_NO_STDC_NAMESPACE
# ifndef BOOST_HAS_UNISTD_H
# define BOOST_HAS_UNISTD_H
# endif
# ifndef BOOST_HAS_STDINT_H
# define BOOST_HAS_STDINT_H
# endif
#endif