pkgsrc/lang/spidermonkey17/patches/patch-js_src_methodjit_MethodJIT.cpp
youri 4c94c9011b Import spidermonkey17-17.0.0 as lang/spidermonkey17.
SpiderMonkey is the code-name for the Mozilla's C implementation of JavaScript.
This package contains SpiderMonkey 17.
2016-05-20 18:45:22 +00:00

16 lines
611 B
C++

$NetBSD: patch-js_src_methodjit_MethodJIT.cpp,v 1.1 2016/05/20 18:45:22 youri Exp $
# This does not only apply to linux, but all ELF platforms (otherwise the
# generated code will not be PIC)
--- js/src/methodjit/MethodJIT.cpp.orig 2012-08-24 22:55:40.000000000 +0000
+++ js/src/methodjit/MethodJIT.cpp
@@ -135,7 +135,7 @@ PopActiveVMFrame(VMFrame &f)
JS_STATIC_ASSERT(offsetof(FrameRegs, sp) == 0);
-#if defined(__linux__) && defined(JS_CPU_X64)
+#if defined(__ELF__) && defined(JS_CPU_X64)
# define SYMBOL_STRING_RELOC(name) #name "@plt"
#else
# define SYMBOL_STRING_RELOC(name) SYMBOL_STRING(name)