From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FYZB5-00042Y-CJ for qemu-devel@nongnu.org; Tue, 25 Apr 2006 21:50:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FYZB2-00042L-IF for qemu-devel@nongnu.org; Tue, 25 Apr 2006 21:50:50 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FYZB2-00042I-CJ for qemu-devel@nongnu.org; Tue, 25 Apr 2006 21:50:48 -0400 Received: from [203.142.22.130] (helo=mx.new.tusker.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FYZDc-0000Vh-72 for qemu-devel@nongnu.org; Tue, 25 Apr 2006 21:53:28 -0400 Received: from localhost (localhost [127.0.0.1]) by mx.new.tusker.net (Postfix) with ESMTP id 82BFD16EE7EF for ; Wed, 26 Apr 2006 09:50:42 +0800 (SGT) Received: from mx.new.tusker.net ([127.0.0.1]) by localhost (new.tusker.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26776-09 for ; Wed, 26 Apr 2006 09:50:37 +0800 (SGT) Received: from [192.168.1.13] (datalex.cable.nu [203.117.94.152]) by mx.new.tusker.net (Postfix) with ESMTP id C090511FD91B for ; Wed, 26 Apr 2006 09:50:37 +0800 (SGT) Message-ID: <444ED1DD.7090502@tusker.org> Date: Wed, 26 Apr 2006 09:50:21 +0800 From: Damien Mascord MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] fpu/softfloat-native.h incorrectly includes missing header (gnu-c99-math.h) in latest CVS Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, Seems as though a missing header is being included in this file. Removing it enables qemu to compile cleanly, Damien Index: fpu/softfloat-native.h =================================================================== RCS file: /cvsroot/qemu/qemu/fpu/softfloat-native.h,v retrieving revision 1.3 diff -u -r1.3 softfloat-native.h --- fpu/softfloat-native.h 25 Apr 2006 22:36:06 -0000 1.3 +++ fpu/softfloat-native.h 26 Apr 2006 01:48:56 -0000 @@ -7,7 +7,6 @@ #include #endif #endif -#include "gnu-c99-math.h" typedef float float32; typedef double float64;