aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/fltk/math-h-polyfill.patch
blob: 1591f19a7a8d843695b0910ea722ebaa44f8b6f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;}