From: Andreas Färber Date: Sat, 12 Dec 2009 19:10:56 +0000 (+0100) Subject: Silence softfloat warnings on OpenSolaris X-Git-Tag: TizenStudio_2.0_p2.3~6280 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6a97f3ad9bf4f27074c2ebe72de214d17daf1634;p=sdk%2Femulator%2Fqemu.git Silence softfloat warnings on OpenSolaris Don't define C99 math functions on OpenSolaris (Solaris 11), which still ships GCC 3.4.3. This fixes redefinition warnings. Spotted by Palle Lyckegaard. Signed-off-by: Andreas Färber Cc: Palle Lyckegaard Cc: Ben Taylor Signed-off-by: Blue Swirl --- diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h index 35670c8..fe737b3 100644 --- a/fpu/softfloat-native.h +++ b/fpu/softfloat-native.h @@ -22,7 +22,7 @@ */ #if defined(CONFIG_SOLARIS) && \ ((CONFIG_SOLARIS_VERSION <= 9 ) || \ - ((CONFIG_SOLARIS_VERSION >= 10) && (__GNUC__ < 4))) \ + ((CONFIG_SOLARIS_VERSION == 10) && (__GNUC__ < 4))) \ || (defined(__OpenBSD__) && (OpenBSD < 200811)) /* * C99 7.12.3 classification macros