From: "Simon Kröger" Date: 2006-07-20T04:06:53+09:00 Subject: Re: One-Click Installer: MinGW? or VC2005? Lyle Johnson wrote: > [...] > I've just uninstalled MinGW, and am going to start over again with the > "Candidate" release (which is based on gcc-3.4.5). We'll see if that > goes any better... I don't think so, but this might help: $ diff ruby-1.8.4/win32/win32.h.orig ruby-1.8.4/win32/win32.h 154,159d153 < #ifdef __MINGW32__ < struct timezone { < int tz_minuteswest; < int tz_dsttime; < }; < #endif 203,204c197,200 < extern int link(char *, char *); < extern int gettimeofday(struct timeval *, struct timezone *); --- > extern int link(char *, char *); > #ifndef __MINGW32__ > extern int gettimeofday(struct timeval *, struct timezone *); > #endif $ diff ruby-1.8.4/win32/win32.c.orig ruby-1.8.4/win32/win32.c 2536c2536 < #include --- > #include 2537a2538 > #ifndef __MINGW32__ 2558a2560 > #endif well, I'm not very used to this tools, how do i get a more readable output ? cheers Simon