Module: Mesa Branch: master Commit: f350b106171795fec39ed47ef34a451949c84c33 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f350b106171795fec39ed47ef34a451949c84c33
Author: Jon TURNEY <[email protected]> Date: Fri May 7 18:59:53 2010 +0100 mesa: fpclassify dummy definition is not needed on cygwin fpclassify is provided by math.h Signed-off-by: Jon TURNEY <[email protected]> Signed-off-by: Brian Paul <[email protected]> --- src/mesa/main/querymatrix.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c index 4ecd275..e5c08a6 100644 --- a/src/mesa/main/querymatrix.c +++ b/src/mesa/main/querymatrix.c @@ -70,7 +70,7 @@ fpclassify(double x) } } -#elif defined(__APPLE__) +#elif defined(__APPLE__) || defined(__CYGWIN__) /* fpclassify is available. */ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
