diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-06-09 15:45:58 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-06-09 15:45:58 +0000 |
commit | 3517c5d5a9df01551bd53d54c97117587d618e72 (patch) | |
tree | 096ff92bd7159e68a873cb1da38a007d2951257d /lang/ruby-js/files | |
parent | Add local patch to fix rtorrent's spinlock implementation. (diff) |
Remove lang/njs and ports that depends on it, njs has no more public distfile and no more upstream
the other aren't under development anymore
lang/ruby-js
textproc/ruby-xml-script
www/ruby-asp
2011-05-01 lang/njs: Upstream disapear and distfile is no more available
Notes
Notes:
svn path=/head/; revision=275278
Diffstat (limited to 'lang/ruby-js/files')
-rw-r--r-- | lang/ruby-js/files/patch-js.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/ruby-js/files/patch-js.c b/lang/ruby-js/files/patch-js.c deleted file mode 100644 index 82ea74832e4c..000000000000 --- a/lang/ruby-js/files/patch-js.c +++ /dev/null @@ -1,14 +0,0 @@ -Index: js.c -@@ -112,9 +112,9 @@ - static VALUE - rb_js_eval(VALUE obj, VALUE code) - { -- JSInterpPtr interp; -- Data_Get_Struct(obj, JSInterpPtr, (void *) interp); -- return rb_js_evalcode(interp, code); -+ void *interp; -+ Data_Get_Struct(obj, JSInterpPtr, interp); -+ return rb_js_evalcode((JSInterpPtr) interp, code); - } - - void |