From c7ea47eef137f9d7aa4e6b98744ac220d09d3e37 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 28 Jul 2003 14:31:01 +0000 Subject: [PATCH] unused git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4196 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/configsub.rb | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 ext/configsub.rb diff --git a/ext/configsub.rb b/ext/configsub.rb deleted file mode 100644 index 15d9a2e3d3..0000000000 --- a/ext/configsub.rb +++ /dev/null @@ -1,32 +0,0 @@ -#!./miniruby -ps - -BEGIN { - CONFIG = {} - - RUBY_VERSION.scan(/(\d+)\.(\d+)\.(\d+)/) do - # overridden if config.status has version - CONFIG['MAJOR'] = $1 - CONFIG['MINOR'] = $2 - CONFIG['TEENY'] = $3 - end - - File.foreach($config || "config.status") do |line| - next if /^#/ =~ line - if /^s[%,]@(\w+)@[%,](.*)[%,][g;]/ =~ line - name = $1 - val = $2 || "" - next if /^(INSTALL|DEFS|configure_input|srcdir)$/ =~ name - val.gsub!(/\$\{([^{}]+)\}/) { "$(#{$1})" } - CONFIG[name] = val - end - end - - CONFIG['top_srcdir'] = File.expand_path($srcdir || ".") - CONFIG['RUBY_INSTALL_NAME'] = $install_name if $install_name - CONFIG['RUBY_SO_NAME'] = $so_name if $so_name - $stdout = open($output, 'w') if $output -} - -gsub!(/@(\w+)@/) {CONFIG[$1] || $&} - -# vi:set sw=2: