mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub (OPTFLAGS): I have experienced trouble on y- flag,
(VisualC++6) so use -O2b2xg- if $(MSC_VER) < 1400. [ruby-core:7040] * lib/webrick/httpservlet/filehandler.rb: fixed typo. (Kero van Gelder) [ruby-core:7075] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c5249a6ff9
commit
c16cbe386a
3 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
Mon Jan 9 14:17:12 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* win32/Makefile.sub (OPTFLAGS): I have experienced trouble on y- flag,
|
||||
(VisualC++6) so use -O2b2xg- if $(MSC_VER) < 1400. [ruby-core:7040]
|
||||
|
||||
* lib/webrick/httpservlet/filehandler.rb: fixed typo. (Kero van Gelder)
|
||||
[ruby-core:7075]
|
||||
|
||||
Sat Jan 7 15:40:07 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (singleton): get rid of segfault on syntax error.
|
||||
|
|
|
@ -51,7 +51,7 @@ module WEBrick
|
|||
return true
|
||||
end
|
||||
rescue
|
||||
if HTTPUtils::split_header_valie(ir).member?(res['etag'])
|
||||
if HTTPUtils::split_header_value(ir).member?(res['etag'])
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
|
|
@ -69,8 +69,12 @@ ARCH = $(PROCESSOR_ARCHITECTURE)
|
|||
DEBUGFLAGS = -Zi
|
||||
!endif
|
||||
!if !defined(OPTFLAGS)
|
||||
!if $(MSC_VER) < 1400
|
||||
OPTFLAGS = -O2b2xg-
|
||||
!else
|
||||
OPTFLAGS = -O2b2xty-
|
||||
!endif
|
||||
!endif
|
||||
!if !defined(OS)
|
||||
OS = mswin32
|
||||
!endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue