1
0
Fork 0
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/trunk@9809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2006-01-09 05:27:43 +00:00
parent eea27ee2ec
commit 65ebb02460
3 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,11 @@
Mon Jan 9 14:25:00 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]
Sun Jan 8 14:15:27 2006 Tanaka Akira <akr@m17n.org>
* eval.c (GCC_VERSION_BEFORE): check __INTEL_COMPILER.

View file

@ -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

View file

@ -76,8 +76,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