Re: [Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Peter Maydell
On 7 July 2015 at 22:23, Michael Roth wrote: > Since I have a build environment handy I'll go ahead and put together > a patch to disable the feature via a configure check/flag. Thanks. Since this is a pretty old build environment I think it's reasonable to just disable the feature there. -- PMM

Re: [Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Michael Roth
Quoting Denis V. Lunev (2015-07-07 15:04:20) > On 07/07/15 23:02, Michael Roth wrote: > > Quoting Peter Maydell (2015-07-07 14:16:29) > >> On 7 July 2015 at 19:06, Denis V. Lunev wrote: > >>> On 07/07/15 20:13, Olga Krishtal wrote: > > Peter, can you try this patch on your system? >

Re: [Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Denis V. Lunev
On 07/07/15 23:02, Michael Roth wrote: Quoting Peter Maydell (2015-07-07 14:16:29) On 7 July 2015 at 19:06, Denis V. Lunev wrote: On 07/07/15 20:13, Olga Krishtal wrote: Peter, can you try this patch on your system? In mingw older than mingw64-headers-4.0.2-1.el7.noarch header ntddscsi.h ca

Re: [Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Michael Roth
Quoting Peter Maydell (2015-07-07 14:16:29) > On 7 July 2015 at 19:06, Denis V. Lunev wrote: > > On 07/07/15 20:13, Olga Krishtal wrote: > >> > >> Peter, can you try this patch on your system? > >> > >> In mingw older than mingw64-headers-4.0.2-1.el7.noarch > >> header ntddscsi.h can be found in i

Re: [Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Peter Maydell
On 7 July 2015 at 19:06, Denis V. Lunev wrote: > On 07/07/15 20:13, Olga Krishtal wrote: >> >> Peter, can you try this patch on your system? >> >> In mingw older than mingw64-headers-4.0.2-1.el7.noarch >> header ntddscsi.h can be found in include/ddk, however >> compiler does not look there. This

Re: [Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Denis V. Lunev
On 07/07/15 20:13, Olga Krishtal wrote: Peter, can you try this patch on your system? In mingw older than mingw64-headers-4.0.2-1.el7.noarch header ntddscsi.h can be found in include/ddk, however compiler does not look there. This breaks the compilation. The patch adds this directory in QEMU_IN

[Qemu-devel] [PATCH] qga: fix build for older versions of mingw

2015-07-07 Thread Olga Krishtal
Peter, can you try this patch on your system? In mingw older than mingw64-headers-4.0.2-1.el7.noarch header ntddscsi.h can be found in include/ddk, however compiler does not look there. This breaks the compilation. The patch adds this directory in QEMU_INCLUDES. Signed-off-by: Olga Krishtal ---