From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4Zec-0005il-SF for qemu-devel@nongnu.org; Fri, 16 Sep 2011 10:44:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R4ZeU-0001TT-S2 for qemu-devel@nongnu.org; Fri, 16 Sep 2011 10:44:34 -0400 Received: from mail-gy0-f173.google.com ([209.85.160.173]:36292) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4ZeU-0001TE-Pd for qemu-devel@nongnu.org; Fri, 16 Sep 2011 10:44:26 -0400 Received: by gye5 with SMTP id 5so3599712gye.4 for ; Fri, 16 Sep 2011 07:44:26 -0700 (PDT) Message-ID: <4E7360C7.8060205@codemonkey.ws> Date: Fri, 16 Sep 2011 09:44:23 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <4E6F56A6.30403@amd.com> In-Reply-To: <4E6F56A6.30403@amd.com> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] bswap.h: build fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christoph Egger Cc: "qemu-devel@nongnu.org" On 09/13/2011 08:12 AM, Christoph Egger wrote: > > qemu build fails when CONFIG_MACHINE_BSWAP_H is defined > because float32, float64, etc. are not defined. > This makes qemu build. > > Signed-off-by: Christoph Egger Applied. Thanks. Regards, Anthony Liguori > > diff --git a/bswap.h b/bswap.h > index f41bebe..cc7f84d 100644 > --- a/bswap.h > +++ b/bswap.h > @@ -4,6 +4,7 @@ > #include "config-host.h" > > #include > +#include "softfloat.h" > > #ifdef CONFIG_MACHINE_BSWAP_H > #include > @@ -11,8 +12,6 @@ > #include > #else > > -#include "softfloat.h" > - > #ifdef CONFIG_BYTESWAP_H > #include > #else > > >