After some poking around with the findutils 4.2.27 code it turned out that the following patch makes it compile on IRIX 5.3:
--- ./gnulib/lib/mbchar.c.orig 2005-12-17 20:25:10.000000000 +0100 +++ ./gnulib/lib/mbchar.c 2005-12-17 20:25:33.000000000 +0100 @@ -21,7 +21,9 @@ #include <limits.h> +#if defined HAVE_WCHAR_H || defined _LIBC #include "mbchar.h" +#endif #if IS_BASIC_ASCII I'm not sure if it is necessary to check for _LIBC as well. It's being done at some other instances of the code. Georg -- Georg Schwarz http://home.pages.de/~schwarz/ [EMAIL PROTECTED] +49 178 8545053 _______________________________________________ Bug-findutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-findutils
