* ext/dl/cptr.c (rb_dlptr_s_to_ptr): no longer check

HAVE_RB_IO_STDIO_FILE.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-08-08 10:20:08 +00:00
parent 4b3644bef7
commit 7db17c6ad6
3 changed files with 4 additions and 9 deletions

View File

@ -1,7 +1,7 @@
Wed Aug 8 18:58:14 2007 Yukihiro Matsumoto <matz@ruby-lang.org> Wed Aug 8 19:17:40 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/dl/cptr.c (rb_dlptr_s_to_ptr): fptr->f was renamed to fd. a * ext/dl/cptr.c (rb_dlptr_s_to_ptr): no longer check
report from Yusuf Celik <ycelik AT oytek.com.tr>. HAVE_RB_IO_STDIO_FILE.
Wed Aug 8 15:52:01 2007 Yukihiro Matsumoto <matz@ruby-lang.org> Wed Aug 8 15:52:01 2007 Yukihiro Matsumoto <matz@ruby-lang.org>

View File

@ -420,11 +420,7 @@ rb_dlptr_s_to_ptr(VALUE self, VALUE val)
rb_io_t *fptr; rb_io_t *fptr;
FILE *fp; FILE *fp;
GetOpenFile(val, fptr); GetOpenFile(val, fptr);
#if HAVE_RB_IO_STDIO_FILE
fp = rb_io_stdio_file(fptr); fp = rb_io_stdio_file(fptr);
#else
fp = fptr->fd;
#endif
return rb_dlptr_new(fp, 0, NULL); return rb_dlptr_new(fp, 0, NULL);
} }
else if( rb_obj_is_kind_of(val, rb_cString) == Qtrue ){ else if( rb_obj_is_kind_of(val, rb_cString) == Qtrue ){

View File

@ -25,8 +25,7 @@ else
check = false check = false
end end
if( check ) if check
have_func("rb_io_stdio_file", "ruby/ruby.h")
$defs << %[-DRUBY_VERSION=\\"#{RUBY_VERSION}\\"] $defs << %[-DRUBY_VERSION=\\"#{RUBY_VERSION}\\"]
create_makefile("dl") create_makefile("dl")
end end