On Fri, May 20, 2011, Steve McIntyre wrote: > -#ifndef __WIN32__ > +#ifndef lstat > int lstat (); > +#endif > +#ifndef stat > int stat (); > #endif
This does have the effect of defining stat and lstat when __WIN32__ is defined, which might not be desired (perhaps it's preferred to fail the WIN32 build earlier if the code tries to use stat or lstat when it shouldn't). I guess only the upstream developers can tell their preference here though. -- Loïc Minier -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

