aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-08 16:26:59 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-08 16:26:59 +0000
commit49dc768d4c579298d56777348422ebdca565a3ef (patch)
treef3030aa5cbb079c697644c1fad5783e2d5e95c04
parent2734c7037ec7bf2e43576a70491718afbc9b137f (diff)
Fix windows build and clean up use of <windows.h>
We want to globally define WIN_LEAN_AND_MEAN and WINVER to particular values so let's do it in OS_CFLAGS. Then, we can pepper in windows.h includes where using #includes that require it. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6783 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--block-raw-win32.c1
-rw-r--r--block.c4
-rwxr-xr-xconfigure1
-rw-r--r--kqemu.c1
-rw-r--r--net.c1
-rw-r--r--osdep.c1
-rw-r--r--qemu-common.h6
-rw-r--r--qemu-img.c1
-rw-r--r--qemu_socket.h2
-rw-r--r--savevm.c1
-rw-r--r--slirp/slirp.h1
-rw-r--r--sysemu.h4
-rw-r--r--tap-win32.c1
-rw-r--r--vl.c1
14 files changed, 13 insertions, 13 deletions
diff --git a/block-raw-win32.c b/block-raw-win32.c
index 19fa80dd7..6387b0959 100644
--- a/block-raw-win32.c
+++ b/block-raw-win32.c
@@ -25,6 +25,7 @@
#include "qemu-timer.h"
#include "block_int.h"
#include <assert.h>
+#include <windows.h>
#include <winioctl.h>
//#define WIN32_AIO
diff --git a/block.c b/block.c
index 36de3b618..bd65ed361 100644
--- a/block.c
+++ b/block.c
@@ -40,6 +40,10 @@
#endif
#endif
+#ifdef _WIN32
+#include <windows.h>
+#endif
+
#define SECTOR_BITS 9
#define SECTOR_SIZE (1 << SECTOR_BITS)
diff --git a/configure b/configure
index 22795e85a..819817a37 100755
--- a/configure
+++ b/configure
@@ -590,6 +590,7 @@ if test "$mingw32" = "yes" ; then
oss="no"
linux_user="no"
bsd_user="no"
+ OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
fi
if test ! -x "$(which cgcc 2>/dev/null)"; then
diff --git a/kqemu.c b/kqemu.c
index 25f4ea784..96660b013 100644
--- a/kqemu.c
+++ b/kqemu.c
@@ -19,7 +19,6 @@
*/
#include "config.h"
#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winioctl.h>
#else
diff --git a/net.c b/net.c
index 90c4b5b3c..c853dafb8 100644
--- a/net.c
+++ b/net.c
@@ -102,6 +102,7 @@
#endif
#ifdef _WIN32
+#include <windows.h>
#include <malloc.h>
#include <sys/timeb.h>
#include <mmsystem.h>
diff --git a/osdep.c b/osdep.c
index a583d77a0..91fb39efa 100644
--- a/osdep.c
+++ b/osdep.c
@@ -37,7 +37,6 @@
#include "config-host.h"
#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#elif defined(HOST_BSD)
#include <stdlib.h>
diff --git a/qemu-common.h b/qemu-common.h
index f8ac7e6fd..6848b337f 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -2,12 +2,6 @@
#ifndef QEMU_COMMON_H
#define QEMU_COMMON_H
-#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN
-#define WINVER 0x0501 /* needed for ipv6 bits */
-#include <windows.h>
-#endif
-
#define QEMU_NORETURN __attribute__ ((__noreturn__))
/* Hack around the mess dyngen-exec.h causes: We need QEMU_NORETURN in files that
diff --git a/qemu-img.c b/qemu-img.c
index d83ffe3ee..2af695fbe 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -27,7 +27,6 @@
#include <assert.h>
#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
diff --git a/qemu_socket.h b/qemu_socket.h
index c8ca07ea7..fc5b5889b 100644
--- a/qemu_socket.h
+++ b/qemu_socket.h
@@ -3,8 +3,6 @@
#define QEMU_SOCKET_H
#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN
-#define WINVER 0x0501 /* needed for ipv6 bits */
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
diff --git a/savevm.c b/savevm.c
index 837a9f01c..6104f629a 100644
--- a/savevm.c
+++ b/savevm.c
@@ -71,6 +71,7 @@
#endif
#ifdef _WIN32
+#include <windows.h>
#include <malloc.h>
#include <sys/timeb.h>
#include <mmsystem.h>
diff --git a/slirp/slirp.h b/slirp/slirp.h
index 6f8a7f602..8309fe051 100644
--- a/slirp/slirp.h
+++ b/slirp/slirp.h
@@ -29,7 +29,6 @@ typedef uint32_t u_int32_t;
typedef uint64_t u_int64_t;
typedef char *caddr_t;
-#define WIN32_LEAN_AND_MEAN
# include <windows.h>
# include <winsock2.h>
# include <ws2tcpip.h>
diff --git a/sysemu.h b/sysemu.h
index 8775412b7..3eab34b39 100644
--- a/sysemu.h
+++ b/sysemu.h
@@ -4,6 +4,10 @@
#include "qemu-common.h"
+#ifdef _WIN32
+#include <windows.h>
+#endif
+
/* vl.c */
extern const char *bios_name;
extern const char *bios_dir;
diff --git a/tap-win32.c b/tap-win32.c
index 327964423..df31fda49 100644
--- a/tap-win32.c
+++ b/tap-win32.c
@@ -30,7 +30,6 @@
#include "net.h"
#include "sysemu.h"
#include <stdio.h>
-#define WIN32_LEAN_AND_MEAN
#include <windows.h>
/* NOTE: PCIBus is redefined in winddk.h */
diff --git a/vl.c b/vl.c
index 06e9f7335..b7417008a 100644
--- a/vl.c
+++ b/vl.c
@@ -103,6 +103,7 @@
#endif
#ifdef _WIN32
+#include <windows.h>
#include <malloc.h>
#include <sys/timeb.h>
#include <mmsystem.h>