While MinGW-w64 can compile the qga code, MinGW from Ubuntu lenny (gcc-mingw32 4.4.2-3) shows these errors:
In file included from qga/vss-win32.c:17: qga/vss-win32/requester.h:31: error: expected »=«, »,«, »;«, »asm« or »__attribute__« before »requester_init« qga/vss-win32/requester.h:32: error: expected »=«, »,«, »;«, »asm« or »__attribute__« before »requester_deinit« The macro STDAPI is unknown, so add the missing include file which defines it. Signed-off-by: Stefan Weil <s...@weilnetz.de> --- This patch also fixes the same error on the MinGW buildbot. I did not notice it earlier because I usually compile with MinGW-w64. Regards, Stefan qga/vss-win32/requester.h | 1 + 1 file changed, 1 insertion(+) diff --git a/qga/vss-win32/requester.h b/qga/vss-win32/requester.h index cffec01..374f9b8 100644 --- a/qga/vss-win32/requester.h +++ b/qga/vss-win32/requester.h @@ -13,6 +13,7 @@ #ifndef VSS_WIN32_REQUESTER_H #define VSS_WIN32_REQUESTER_H +#include <basetyps.h> /* STDAPI */ #include "qemu/compiler.h" #ifdef __cplusplus -- 1.7.10.4