http://bugs.winehq.org/show_bug.cgi?id=16861
Andrey Turkin andrey.turkin@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |andrey.turkin@gmail.com
--- Comment #2 from Andrey Turkin andrey.turkin@gmail.com 2010-07-04 14:57:01 --- This is failed static assertion on CHAR and CCHAR type being signed types. There are several possible ways to fix this: 1) either remove sign checks (by modifying tools/winapi/... to generate different code) - but maybe those must be signed for some reason 2) or make sure include/winnt.h defines CHAR and CCHAR as "signed char", contrary to default "char" in PSDK
You can probably work this one with "./configure CFLAGS=-signed-char" to force compiler make chars signed by default.