diff options
author | Alex Kozlov <spam@rm-rf.kiev.ua> | 2010-05-14 06:16:14 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-05-14 06:16:14 -0700 |
commit | 34c20fd4f5a542222aef5a008f0fe64d8c447794 (patch) | |
tree | cdc928700d884c93d1683d8b5f00ff31ce5bd5ab | |
parent | fc4d1b9ba965f26c504e6f5fea12e2bac2d71d72 (diff) |
mesa: fpclassify dummy definition is not needed on FreeBSD.
-rw-r--r-- | 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 e5c08a6414..a6b04e9551 100644 --- a/src/mesa/main/querymatrix.c +++ b/src/mesa/main/querymatrix.c @@ -70,7 +70,7 @@ fpclassify(double x) } } -#elif defined(__APPLE__) || defined(__CYGWIN__) +#elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) /* fpclassify is available. */ |