Module: Mesa Branch: master Commit: beb5e1c807bbe90adc7490a043de623d7a3e6e4e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=beb5e1c807bbe90adc7490a043de623d7a3e6e4e
Author: Alan Coopersmith <[email protected]> Date: Tue May 18 09:28:37 2010 -0700 fpclassify is available on C99-compliant Solaris releases too Signed-off-by: Alan Coopersmith <[email protected]> Signed-off-by: Brian Paul <[email protected]> --- src/mesa/main/querymatrix.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c index a6b04e9..ca292aa 100644 --- a/src/mesa/main/querymatrix.c +++ b/src/mesa/main/querymatrix.c @@ -70,7 +70,8 @@ fpclassify(double x) } } -#elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) +#elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \ + (defined(__sun) && defined(__C99FEATURES__)) /* fpclassify is available. */ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
