Versioned as 1.8.5 despite the distfile version, as that seemed like a confusing misnomer (especially compared to other branches versioning). SpiderMonkey is the code-name for the Mozilla's C implementation of JavaScript.
16 lines
404 B
C
16 lines
404 B
C
$NetBSD: patch-v8-dtoa_platform.h,v 1.1 2016/11/16 13:13:44 fhajny Exp $
|
|
|
|
fpclassify is defined on Illumos.
|
|
|
|
--- v8-dtoa/platform.h.orig 2011-03-31 19:08:36.000000000 +0000
|
|
+++ v8-dtoa/platform.h
|
|
@@ -67,7 +67,9 @@ int strncasecmp(const char* s1, const ch
|
|
#endif // WIN32
|
|
|
|
#ifdef SOLARIS
|
|
+#ifndef fpclassify
|
|
int fpclassify(double x);
|
|
+#endif // fpclassify
|
|
#endif // SOLARIS
|
|
|
|
// GCC specific stuff
|