@@ -474,6 +474,7 @@ if test "$mingw32" = "yes" ; then
QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
# enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
+ QEMU_CFLAGS="-I\$(SRC_PATH)/hosts/w32/include $QEMU_CFLAGS"
LIBS="-lwinmm -lws2_32 -liberty -liphlpapi $LIBS"
prefix="c:/Program Files/Qemu"
mandir="\${prefix}"
new file mode 100644
@@ -0,0 +1 @@
+This directory contains extensions of MinGW which are needed by QEMU.
This is a first step which will reduce the number of conditional compilations caused by MinGW. Include files will be added to hosts/w32/include. Signed-off-by: Stefan Weil <weil@mail.berlios.de> --- configure | 1 + hosts/w32/README | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) create mode 100644 hosts/w32/README