Peter Kümmel <[EMAIL PROTECTED]> writes: > +#ifdef HAVE_LC_MESSAGES > + lc_msgs = setlocale(LC_MESSAGES, NULL); > +#endif
Good detective work (again!) but there's no need to define a macro to use a macro. Use #ifdef LC_MESSAGES instead. What happens if you define LC_MESSAGES to 1729 as you showed us in that Solaris block? Angus