[Webkit-unassigned] [Bug 16590] Solaris OS compile fix

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Dec 25 14:49:28 PST 2007


http://bugs.webkit.org/show_bug.cgi?id=16590





------- Comment #3 from mjs at apple.com  2007-12-25 14:49 PDT -------
It would be better if these were written as inline functions, not #defines:

+#if PLATFORM(SOLARIS_OS) && COMPILER(GCC)
+#include <ieeefp.h>
+#if !defined(isfinite)
+#define isfinite(x) (finite(x) && !isnand(x))
+#endif
+#if !defined(isinf)
+#define isinf(x) (!finite(x) && (x == x))
+#endif
+#if !defined(signbit)
+#define signbit(x) (x < 0.0)
+#endif
+#endif
+

Please fix when landing.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list