* 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:
parent
eea27ee2ec
commit
65ebb02460
@ -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>
|
Sun Jan 8 14:15:27 2006 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* eval.c (GCC_VERSION_BEFORE): check __INTEL_COMPILER.
|
* eval.c (GCC_VERSION_BEFORE): check __INTEL_COMPILER.
|
||||||
|
@ -51,7 +51,7 @@ module WEBrick
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
rescue
|
rescue
|
||||||
if HTTPUtils::split_header_valie(ir).member?(res['etag'])
|
if HTTPUtils::split_header_value(ir).member?(res['etag'])
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -76,8 +76,12 @@ ARCH = $(PROCESSOR_ARCHITECTURE)
|
|||||||
DEBUGFLAGS = -Zi
|
DEBUGFLAGS = -Zi
|
||||||
!endif
|
!endif
|
||||||
!if !defined(OPTFLAGS)
|
!if !defined(OPTFLAGS)
|
||||||
|
!if $(MSC_VER) < 1400
|
||||||
|
OPTFLAGS = -O2b2xg-
|
||||||
|
!else
|
||||||
OPTFLAGS = -O2b2xty-
|
OPTFLAGS = -O2b2xty-
|
||||||
!endif
|
!endif
|
||||||
|
!endif
|
||||||
!if !defined(OS)
|
!if !defined(OS)
|
||||||
OS = mswin32
|
OS = mswin32
|
||||||
!endif
|
!endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user