* [Qemu-devel] [PATCH] usb: Fix compilation for Windows
@ 2016-03-16 20:17 Stefan Weil
2016-03-18 12:13 ` Gerd Hoffmann
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Weil @ 2016-03-16 20:17 UTC (permalink / raw)
To: QEMU Developer; +Cc: Stefan Weil, Gerd Hoffmann
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 <sw@weilnetz.de>
---
Cygwin now includes Mingw-w64 packages for cross compilation.
The packages mingw64-x86_64-libusb1.0 and mingw64-x86_64-usbredir
can be used for QEMU builds, but trigger new compiler errors.
This patch fixes them partially.
Regards,
Stefan
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))
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] usb: Fix compilation for Windows
2016-03-16 20:17 [Qemu-devel] [PATCH] usb: Fix compilation for Windows Stefan Weil
@ 2016-03-18 12:13 ` Gerd Hoffmann
0 siblings, 0 replies; 2+ messages in thread
From: Gerd Hoffmann @ 2016-03-18 12:13 UTC (permalink / raw)
To: Stefan Weil; +Cc: QEMU Developer
On Mi, 2016-03-16 at 21:17 +0100, Stefan Weil wrote:
> 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 <sw@weilnetz.de>
> ---
>
> Cygwin now includes Mingw-w64 packages for cross compilation.
>
> The packages mingw64-x86_64-libusb1.0 and mingw64-x86_64-usbredir
> can be used for QEMU builds, but trigger new compiler errors.
>
> This patch fixes them partially.
Added to usb queue.
thanks,
Gerd
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-18 12:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-16 20:17 [Qemu-devel] [PATCH] usb: Fix compilation for Windows Stefan Weil
2016-03-18 12:13 ` Gerd Hoffmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).