On Thursday 07 October 2004 22:26, Ron Blaschke wrote: > config\gen\platform\generic\stat.c(81) : error C2039: 'st_blksize' : is not > a member of 'stat' I am working on MINGW support and had this error, too. I just added
#if defined(__MINGW32__) around those lines. I can change it to defined(WIN32), or we write a win32 version of stat.c. This there a Win32 API stat()-like function that makes it worth to write win32/stat.c? jens