2012/8/14 Corinna Vinschen > On Aug 14 09:29, Corinna Vinschen wrote: >> On Aug 14 08:25, Andy Koppe wrote: >> > On 14 August 2012 08:18, Corinna Vinschen wrote: >> > > On Aug 13 21:51, Yaakov (Cygwin/X) wrote: >> > >> On 2012-08-12 01:49, JonY wrote: >> > >> >New w32api preliminary upload, now with mingw-w64 parts. >> > >> >> > >> Nack. Both mintty and xorg-server FTBFS with this w32api. >> > > >> > > Er... what? >> > >> > I had to look it up: Fails To Build From Source. >> > >> > /usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../include/w32api/windef.h:23:27: >> > error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘ULONG’ >> > >> > windef.h:23: typedef unsigned __LONG32 ULONG; >> > >> > It doesn't like the __LONG32. >> >> Ok, that's fixable. Do you include windef before windows.h? If so, >> does it work if you switch the includes? > > Alternatively, can you apply this patch to windef.h and try again? > > Index: windef.h > =================================================================== > --- windef.h (revision 5370) > +++ windef.h (working copy) > @@ -14,6 +14,8 @@ > extern "C" { > #endif > > +#include <_mingw.h> > + > #ifndef WINVER > #define WINVER 0x0502 > #endif > > > Corinna
Fixed at rev. 5371. The include should come before the 'extern "C" {' clause. Thanks for reporting. It might be that there are some of those issues remaining caused by the LP64 support-changes. Regards, Kai