Eric Blake <[EMAIL PROTECTED]> writes: > Paul Eggert <eggert <at> CS.UCLA.EDU> writes: > >> >> Now that we have a wctype module we can simplify some of the other >> modules to just include <wctype.h> and depend on the wctype module. >> Here is a proposed patch. >> >> 2006-12-21 Paul Eggert <eggert <at> cs.ucla.edu> >> >> * lib/mbchar.h: Just include <wctype.h>; the wctype module >> handles its gotchas now. > > Did you ever check this in?
Sorry, no, I missed Bruno's OK. I just now checked it in. > checking absolute name of <wctype.h>... ///usr/include/wctype.h > checking whether wctype macros need _ctmp_ declared... no, but bare wctype.h > does not work What is the test program that fails? It should be in config.log. It's supposed to be something like this: #include <wctype.h> int main () { return iswprint (0); } and <http://www.opengroup.org/susv3/functions/iswprint.html> says this should compile and link OK. Maybe some -l option is needed?