From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45314) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7CQi-0002wa-5X for qemu-devel@nongnu.org; Thu, 30 Aug 2012 17:37:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T7CQh-0001iM-7W for qemu-devel@nongnu.org; Thu, 30 Aug 2012 17:37:36 -0400 Received: from e39.co.us.ibm.com ([32.97.110.160]:45894) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7CQh-0001iB-0l for qemu-devel@nongnu.org; Thu, 30 Aug 2012 17:37:35 -0400 Received: from /spool/local by e39.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 30 Aug 2012 15:37:33 -0600 From: Anthony Liguori In-Reply-To: <1346358511-27720-1-git-send-email-sw@weilnetz.de> References: <1346358511-27720-1-git-send-email-sw@weilnetz.de> Date: Thu, 30 Aug 2012 16:37:16 -0500 Message-ID: <87a9xc6oz7.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH for 1.2] w32: Fix broken build List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org Stefan Weil writes: > Commit ef8621b1a3b199c348606c0a11a77d8e8bf135f1 added an include > file which is not available for MinGW compilations. > > Signed-off-by: Stefan Weil Applied. Thanks. Regards, Anthony Liguori > --- > target-i386/cpu.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/target-i386/cpu.c b/target-i386/cpu.c > index f3cac49..423e009 100644 > --- a/target-i386/cpu.c > +++ b/target-i386/cpu.c > @@ -33,7 +33,9 @@ > #include "hyperv.h" > > #include "hw/hw.h" > +#if defined(CONFIG_KVM) > #include > +#endif > > /* feature flags taken from "Intel Processor Identification and the CPUID > * Instruction" and AMD's "CPUID Specification". In cases of disagreement > -- > 1.7.10