mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* io.c (rb_io_ctl): do not call ioctl/fcntl for f2, if f and f2
have same fileno. * eval.c (rb_load): raise LocaJumpError if unexpected local jumps appear during load. * ext/socket/socket.c (bsock_close_read): don't call rb_thread_fd_close(); it's supposed to be called by io_io_close(). * ext/socket/socket.c (bsock_close_read): do not modify f and f2. * ext/socket/socket.c (bsock_close_write): ditto. * ext/socket/socket.c (sock_new): avoid dup(2) on sockets. * parse.y (primary): preserve and clear in_single and in_def using stack to prevent nested method errors in singleton class bodies. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
32ce4317d8
commit
8be410f065
14 changed files with 429 additions and 147 deletions
|
|
@ -338,9 +338,9 @@ if have_func(test_func)
|
|||
end
|
||||
if ENV["SOCKS_SERVER"] or enable_config("socks", false)
|
||||
if have_library("socks5", "SOCKSinit")
|
||||
$CFLAGS="-DSOCKS5 -DSOCKS"
|
||||
$CFLAGS+=" -DSOCKS5 -DSOCKS"
|
||||
elsif have_library("socks", "Rconnect")
|
||||
$CFLAGS="-DSOCKS"
|
||||
$CFLAGS+=" -DSOCKS"
|
||||
end
|
||||
end
|
||||
create_makefile("socket")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue