[Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Meador Inge
glib calls 'CoTaskMemFree' which is defined by ole32.dll. Therefore when building with mingw32 -lole32 should be in 'LIBS'. Signed-off-by: Meador Inge --- configure |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 88521d2..40caf81 100755 --- a

Re: [Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Peter Maydell
On 15 February 2012 16:41, Meador Inge wrote: > glib calls 'CoTaskMemFree' which is defined by ole32.dll. > Therefore when building with mingw32 -lole32 should be in > 'LIBS'. Not that I'm objecting to the patch, but isn't this technically a bug in the pkg-config for glib with mingw32 that we're

Re: [Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Paolo Bonzini
On 02/15/2012 05:49 PM, Peter Maydell wrote: >> glib calls 'CoTaskMemFree' which is defined by ole32.dll. >> > Therefore when building with mingw32 -lole32 should be in >> > 'LIBS'. > Not that I'm objecting to the patch, but isn't this technically > a bug in the pkg-config for glib with mingw32 tha

Re: [Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Stefan Weil
Am 15.02.2012 17:41, schrieb Meador Inge: glib calls 'CoTaskMemFree' which is defined by ole32.dll. Therefore when building with mingw32 -lole32 should be in 'LIBS'. Signed-off-by: Meador Inge --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/config

Re: [Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Meador Inge
On 02/15/2012 10:49 AM, Peter Maydell wrote: > On 15 February 2012 16:41, Meador Inge wrote: >> glib calls 'CoTaskMemFree' which is defined by ole32.dll. >> Therefore when building with mingw32 -lole32 should be in >> 'LIBS'. > > Not that I'm objecting to the patch, but isn't this technically >