View Single Post
  #4  
Old 03-14-2007, 08:15 AM
mistwang mistwang is offline
LiteSpeed Staff
 
Join Date: May 2003
Location: New Jersey
Posts: 7,583
Please try the following patch to ruby-lsapi-2.2, open file ext/lsapi/lsruby.c, in function:
Code:
static VALUE lsapi_reopen( int argc, VALUE *argv, VALUE self)
replace:
Code:
return rb_io_reopen( argc, argv, orig_stderr );
with
Code:
return rb_funcall( orig_stderr, rb_intern( "reopen" ), 2, argc, argv );
build lsapi extension, and try again.
Reply With Quote