This is a ping on a patch I sent out a while ago to fix the GCC build when building with the mingw toolset.
The problem was that crtstuff.c would not compile because it saw two different (incompatible) definitions of caddr_t, one coming from auto-host.h (set by the configure script) and one coming from the sys/types.h system header file (part of glibc in my case). Since crtstuff.c doesn't actually need or use caddr_t my patch undef's it after including auto-host.h in the same way that pid_t, rlim_t, ssize_t, and vfork are already undef'ed. OK to checkin? Steve Ellcey sell...@mips.com