From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXr0g-00013O-7G for qemu-devel@nongnu.org; Sat, 18 Jun 2011 04:36:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QXr0f-0005fo-4j for qemu-devel@nongnu.org; Sat, 18 Jun 2011 04:36:06 -0400 Message-ID: <4DFC636D.9090800@mail.berlios.de> Date: Sat, 18 Jun 2011 10:35:57 +0200 From: Stefan Weil MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] fix MinGW compilation when --enable-vnc-jpeg is specified List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Roy Tam Cc: qemu-trivial@nongnu.org, qemu-devel Am 18.06.2011 07:13, schrieb Roy Tam: > This patch fix conflicting types for 'INT32' in basetsd.h in including > qemu-common.h first. > > > Sign-off-by: Roy Tam > -- > diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c > index 87fdf35..1591df0 100644 > --- a/ui/vnc-enc-tight.c > +++ b/ui/vnc-enc-tight.c > @@ -28,6 +28,8 @@ > > #include "config-host.h" > > +#include "qemu-common.h" > + > #ifdef CONFIG_VNC_PNG > #include > #endif > @@ -36,8 +38,6 @@ > #include > #endif > > -#include "qemu-common.h" > - > #include "bswap.h" > #include "qint.h" > #include "vnc.h" Acked-by: Stefan Weil The conflicting declaration is in jmorecfg.h which is included from jpeglib.h.