> Compiler complains about code like:
> bool
> ctype<wchar_t>::do_is(mask __m, char_type __c) const
> {
> return (__c < _S_table_size) && (_S_table[__c] & __m);
> }
comment out the following in bits/c++config.h.in and re-configure/build.
// #define _GLIBCPP_USE_WCHAR_T 1
-benjamin