mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (CXX_EXT): cygwin's filesystem (= Windows) is case
insensitive. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@23855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7b90b70db2
commit
8e9d249f9e
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Jun 26 11:02:28 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (CXX_EXT): cygwin's filesystem (= Windows) is case
|
||||
insensitive.
|
||||
|
||||
Thu Jun 25 15:53:25 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ruby.c (load_file): preserves $.. [ruby-core:24024]
|
||||
|
@ -84,7 +89,7 @@ Mon Jun 1 20:45:48 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
|||
|
||||
* lib/mkmf.rb (create_makefile): should set srcs in all paths.
|
||||
|
||||
* lib/mkmf.rb (create_makefile): $objs somtimes includes files with
|
||||
* lib/mkmf.rb (create_makefile): $objs sometimes includes files with
|
||||
$OBJEXT instead of ".o".
|
||||
|
||||
Mon Jun 1 09:02:48 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
|
|
@ -9,7 +9,7 @@ CONFIG = Config::MAKEFILE_CONFIG
|
|||
ORIG_LIBPATH = ENV['LIB']
|
||||
|
||||
CXX_EXT = %w[cc cxx cpp]
|
||||
if /mswin|bccwin|mingw|msdosdjgpp|human|os2/ !~ CONFIG['build_os']
|
||||
if /mswin|bccwin|mingw|cygwin|msdosdjgpp|human|os2/ !~ CONFIG['build_os']
|
||||
CXX_EXT.concat(%w[C])
|
||||
end
|
||||
SRC_EXT = %w[c m].concat(CXX_EXT)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue