diff options
Diffstat (limited to 'multimedia/gxine/files/patch-src::spidermonkey::jsprf.c')
-rw-r--r-- | multimedia/gxine/files/patch-src::spidermonkey::jsprf.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/multimedia/gxine/files/patch-src::spidermonkey::jsprf.c b/multimedia/gxine/files/patch-src::spidermonkey::jsprf.c deleted file mode 100644 index aa72af7ae80b..000000000000 --- a/multimedia/gxine/files/patch-src::spidermonkey::jsprf.c +++ /dev/null @@ -1,16 +0,0 @@ ---- src/spidermonkey/jsprf.c.orig Fri Mar 7 02:14:11 2003 -+++ src/spidermonkey/jsprf.c Wed Sep 21 20:20:45 2005 -@@ -57,7 +57,12 @@ - #define VARARGS_ASSIGN(foo, bar) (foo) = (bar) - #endif - */ --#define VARARGS_ASSIGN(foo, bar) __va_copy(foo, bar) -+#include <osreldate.h> -+#if __FreeBSD_version >= 500000 -+#define VARARGS_ASSIGN(foo, bar) va_copy(foo, bar) -+#else -+#define VARARGS_ASSIGN(foo, bar) (foo) = (bar) -+#endif - - /* - ** WARNING: This code may *NOT* call JS_LOG (because JS_LOG calls it) |