rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / scientific / gdl / patches / 05-datatypes.hpp.patch
blobb1203d48f350aa7b2c5367841886503b052295ca
1 --- gdl-0.9.7/src/datatypes.hpp.orig Mon May 29 09:21:39 2017
2 +++ gdl-0.9.7/src/datatypes.hpp Mon May 29 09:22:36 2017
3 @@ -533,11 +533,13 @@
5 // isfinite & isinf for Solaris
6 #if defined(__sun__)
7 +#include <math.h>
8 # include <ieeefp.h>
9 -# define isfinite finite
10 +/*# define isfinite finite
11 # ifndef isinf
12 # define isinf(x) (!finite(x) && x==x)
13 # endif
14 +*/
15 #endif
17 #endif