[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/6] usb: Fix compilation for Windows
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 1/6] usb: Fix compilation for Windows |
Date: |
Mon, 21 Mar 2016 12:10:19 +0100 |
From: Stefan Weil <address@hidden>
Mingw-w64 does not provide sys/ioctl.h and Linux builds don't need it,
so remove that include statement.
ERROR is defined by wingdi.h (included via windows.h). Undefine it before
it is redefined to avoid a compiler warning / error.
Signed-off-by: Stefan Weil <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/usb/redirect.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c
index 38a5393..cbcc218 100644
--- a/hw/usb/redirect.c
+++ b/hw/usb/redirect.c
@@ -34,12 +34,14 @@
#include "qemu/iov.h"
#include "sysemu/char.h"
-#include <sys/ioctl.h>
#include <usbredirparser.h>
#include <usbredirfilter.h>
#include "hw/usb.h"
+/* ERROR is defined below. Remove any previous definition. */
+#undef ERROR
+
#define MAX_ENDPOINTS 32
#define NO_INTERFACE_INFO 255 /* Valid interface_count always <= 32 */
#define EP2I(ep_address) (((ep_address & 0x80) >> 3) | (ep_address & 0x0f))
--
1.8.3.1
- [Qemu-devel] [PULL 0/6] usb patch queue, Gerd Hoffmann, 2016/03/21
- [Qemu-devel] [PULL 3/6] usb: fix unbound stack usage for usb_mtp_add_str, Gerd Hoffmann, 2016/03/21
- [Qemu-devel] [PULL 4/6] usb: fix unbound stack warning for inotify_watchfn, Gerd Hoffmann, 2016/03/21
- [Qemu-devel] [PULL 5/6] hw/usb/dev-mtp: Guard inotify usage with CONFIG_INOTIFY1, Gerd Hoffmann, 2016/03/21
- [Qemu-devel] [PULL 1/6] usb: Fix compilation for Windows,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 6/6] usb: ehci: add capability mmio write function, Gerd Hoffmann, 2016/03/21
- [Qemu-devel] [PULL 2/6] usb: fix unbounded stack warning for xhci_dma_write_u32s, Gerd Hoffmann, 2016/03/21
- Re: [Qemu-devel] [PULL 0/6] usb patch queue, Peter Maydell, 2016/03/22