2015-03-07 05:06:18 +03:00
|
|
|
#!./miniruby -s
|
|
|
|
|
2016-07-03 00:01:04 +03:00
|
|
|
# Used to expand Ruby config entries for Win32 Makefiles.
|
|
|
|
|
2015-03-07 05:06:18 +03:00
|
|
|
config = File.read(conffile = $config)
|
|
|
|
config.sub!(/^(\s*)RUBY_VERSION\b.*(\sor\s*)$/, '\1true\2')
|
|
|
|
rbconfig = Module.new {module_eval(config, conffile)}::RbConfig
|
|
|
|
config = $expand ? rbconfig::CONFIG : rbconfig::MAKEFILE_CONFIG
|
|
|
|
config["RUBY_RELEASE_DATE"] ||=
|
2022-12-19 16:43:51 +03:00
|
|
|
[
|
|
|
|
["revision.h"],
|
|
|
|
["../../revision.h", __FILE__],
|
|
|
|
["../../version.h", __FILE__],
|
|
|
|
].find do |hdr, dir|
|
|
|
|
hdr = File.expand_path(hdr, dir) if dir
|
|
|
|
if date = File.read(hdr)[/^\s*#\s*define\s+RUBY_RELEASE_DATE(?:TIME)?\s+"([0-9-]*)/, 1]
|
|
|
|
break date
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
end
|
2015-03-07 05:06:18 +03:00
|
|
|
|
|
|
|
while /\A(\w+)=(.*)/ =~ ARGV[0]
|
|
|
|
config[$1] = $2
|
2015-04-20 15:44:08 +03:00
|
|
|
config[$1].tr!(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
|
2015-03-07 05:06:18 +03:00
|
|
|
ARGV.shift
|
|
|
|
end
|
|
|
|
|
|
|
|
if $output
|
2022-11-21 10:20:17 +03:00
|
|
|
output = File.open($output, "wb", $mode &&= $mode.oct)
|
2015-03-07 05:06:18 +03:00
|
|
|
output.chmod($mode) if $mode
|
|
|
|
else
|
|
|
|
output = STDOUT
|
|
|
|
output.binmode
|
|
|
|
end
|
|
|
|
|
2013-12-27 09:46:10 +04:00
|
|
|
ARGF.each do |line|
|
|
|
|
line.gsub!(/@([a-z_]\w*)@/i) {
|
2015-03-07 05:06:18 +03:00
|
|
|
s = config.fetch($1, $expand ? $& : "")
|
|
|
|
s = s.gsub(/\$\((.+?)\)/, %Q[${\\1}]) unless $expand
|
|
|
|
s
|
2013-12-27 09:46:10 +04:00
|
|
|
}
|
2015-03-07 05:06:18 +03:00
|
|
|
output.puts line
|
2013-12-27 09:46:10 +04:00
|
|
|
end
|