From 02082dc9ecf3ad8176bafb083bdcf0effb267b49 Mon Sep 17 00:00:00 2001 From: aliguori Date: Thu, 15 Jan 2009 21:39:41 +0000 Subject: [PATCH] =?utf8?q?Fix=20Windows=20build=20(Herv=C3=A9=20Poussineau)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit r6303 broke Windows build, where "noreturn" is a keyword used with __declspec. Attached patch fixes Windows build, by moving windows.h header inclusion before Qemu noreturn define. Signed-off-by: Hervé Poussineau Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6330 c046a42c-6fe2-441c-8c8c-71466251a162 --- qemu-common.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/qemu-common.h b/qemu-common.h index 6ee31e0..db6c1a6 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -2,6 +2,12 @@ #ifndef QEMU_COMMON_H #define QEMU_COMMON_H +#ifdef _WIN32 +#define WIN32_LEAN_AND_MEAN +#define WINVER 0x0501 /* needed for ipv6 bits */ +#include +#endif + #define noreturn __attribute__ ((__noreturn__)) /* Hack around the mess dyngen-exec.h causes: We need noreturn in files that @@ -47,9 +53,6 @@ struct iovec { #endif #ifdef _WIN32 -#define WIN32_LEAN_AND_MEAN -#define WINVER 0x0501 /* needed for ipv6 bits */ -#include #define fsync _commit #define lseek _lseeki64 #define ENOTSUP 4096 -- 1.7.9.5