From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DSg5S-00015m-HD for qemu-devel@nongnu.org; Mon, 02 May 2005 14:56:10 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DSg5Q-00015J-Ow for qemu-devel@nongnu.org; Mon, 02 May 2005 14:56:08 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DSg5Q-00015E-JD for qemu-devel@nongnu.org; Mon, 02 May 2005 14:56:08 -0400 Received: from [192.76.135.70] (helo=kurt.tools.de) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DSfiF-0000uE-DZ for qemu-devel@nongnu.org; Mon, 02 May 2005 14:32:11 -0400 Message-Id: <200505021827.j42IROes010939@imap3.tools.intra> Date: Mon, 2 May 2005 20:27:24 +0200 (CEST) From: Juergen Keil Subject: Re: Re: [Qemu-devel] [PATCH] qemu-0.7.0 Solaris Host patch (Real) MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Content-MD5: ybOiuV8pgknQzk/2zZwDWA== Reply-To: Juergen Keil , qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: sol10x86@cox.net, qemu-devel@nongnu.org > This is in fenv.h, and so are all the other macros > that are left undefined. Not sure how we fix this, > other than pick up some of these defines manually. Use [fpsetround(), fpgetround()] on Solaris, instead of [fegetround(), fesetround()] ? One of the BSDs already does this (see fpu/softfloat-native.h): #if defined(_BSD) && !defined(__APPLE__) #include #else #include #endif ...