mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 04:59:00 +08:00
c9fc882384
* [fltk] Disable obsolete math.h polyfill * Reduce host dependency
14 lines
446 B
Diff
14 lines
446 B
Diff
diff --git a/FL/math.h b/FL/math.h
|
|
index b574000..216a2ad 100644
|
|
--- a/FL/math.h
|
|
+++ b/FL/math.h
|
|
@@ -47,7 +47,7 @@
|
|
# define M_SQRT1_2 0.70710678118654752440
|
|
# endif // !M_SQRT2
|
|
|
|
-# if (defined(WIN32) || defined(CRAY)) && !defined(__MINGW32__) && !defined(__MWERKS__)
|
|
+# if defined(FLTK_ENABLE_MATH_H_POLYFILL)
|
|
|
|
inline double rint(double v) {return floor(v+.5);}
|
|
inline double copysign(double a, double b) {return b<0 ? -a : a;}
|