mwoehlke <address@hidden> writes:
source='xstrtoimax.c' object='xstrtoimax.o' libtool=no \
DEPDIR=.deps depmode=tru64 /usr/bin/posix/sh ../build-aux/depcomp \
cc -std -I. -I. -I. -I/home/install/gnu/alpha_osf/include -g -c
xstrtoimax.c
cc: Warning: ./config.h, line 1741: The redefinition of the macro
"intmax_t" conflicts with a current definition because the replacement
lists differ. The redefinition is now in effect. (macroredef)
#define intmax_t long long
-----------------^
I think I see the problem now; you can't include <config.h>, then
<inttypes.h>, then <config.h>, due to <config.h> having some
semi-obsolescent definitions of intmax_t (due to gettext not yet
upgrading to assume inttypes.h).
I installed this into gnulib to fix things:
[patch snipped]