From 03a778360b4ac65dd976643055fee3d1af57e0fa Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 31 Mar 2005 13:24:27 +0000 Subject: * lib/mkmf.rb (SRC_EXT): exclude just case different suffixes on case insensitive file system platforms. * README.EXT, README.EXT.ja (Appendix C): utility functions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/mkmf.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 82a10535a..0eb3888b3 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -8,7 +8,10 @@ require 'shellwords' CONFIG = Config::MAKEFILE_CONFIG ORIG_LIBPATH = ENV['LIB'] -SRC_EXT = ["c", "cc", "m", "cxx", "cpp", "C"] +SRC_EXT = %w[c cc m cxx cpp] +if /mswin|bccwin|mingw|msdosdjgpp|human|os2/ !~ CONFIG['build_os'] + SRC_EXT.concat(%w[C]) +end $static = $config_h = nil unless defined? $configure_args @@ -1164,6 +1167,7 @@ def init_mkmf(config = CONFIG) $INSTALLFILES = nil $objs = nil + $srcs = nil $libs = "" if $enable_shared or Config.expand(config["LIBRUBY"].dup) != Config.expand(config["LIBRUBY_A"].dup) $LIBRUBYARG = config['LIBRUBYARG'] -- cgit