mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (PUSH_FRAME): initialize frame->self. [ruby-dev:28911]
* configure.in: should test isinf for Solaris with GCC compiler. a patch from <ville.mattila at stonesoft.com>. [ruby-core:07791] * configure.in: -shared patch from Andrew Morrow <andrew.c.morrow at gmail.com>. [ruby-core:08100] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10446 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
760e0e2a93
commit
bb0687f680
3 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Jul 1 23:55:42 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (PUSH_FRAME): initialize frame->self. [ruby-dev:28911]
|
||||
|
||||
Sat Jul 1 17:00:42 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* test/webrick/utils.rb: use Proc#yield instead of Proc#call.
|
||||
|
@ -12,7 +16,10 @@ Sat Jul 1 15:15:49 2006 Tanaka Akira <akr@m17n.org>
|
|||
Fri Jun 30 23:46:23 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* configure.in: should test isinf for Solaris with GCC compiler.
|
||||
[ruby-core:08100]
|
||||
a patch from <ville.mattila at stonesoft.com>. [ruby-core:07791]
|
||||
|
||||
* configure.in: -shared patch from Andrew Morrow
|
||||
<andrew.c.morrow at gmail.com>. [ruby-core:08100]
|
||||
|
||||
Fri Jun 30 19:35:41 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
|
|
|
@ -892,10 +892,9 @@ if test "$with_dln_a_out" != yes; then
|
|||
: ${LIBPATHENV=SHLIB_PATH}
|
||||
rb_cv_dlopen=yes;;
|
||||
solaris*) if test "$GCC" = yes; then
|
||||
: ${LDSHARED='$(CC) -Wl,-G'}
|
||||
: ${LDSHARED='$(CC) -shared'}
|
||||
if test "$rb_cv_prog_gnu_ld" = yes; then
|
||||
LDFLAGS="$LDFLAGS -Wl,-E"
|
||||
LDSHARED="$LDSHARED -shared"
|
||||
fi
|
||||
else
|
||||
: ${LDSHARED='ld -G'}
|
||||
|
|
1
eval.c
1
eval.c
|
@ -755,6 +755,7 @@ static unsigned long frame_unique = 1;
|
|||
_frame.tmp = 0; \
|
||||
_frame.node = ruby_current_node; \
|
||||
_frame.argc = 0; \
|
||||
_frame.self = (link)?ruby_frame->self:0;\
|
||||
_frame.block = (link)?ruby_frame->block:0;\
|
||||
_frame.flags = 0; \
|
||||
_frame.uniq = frame_unique++; \
|
||||
|
|
Loading…
Reference in a new issue