summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-02 23:18:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-02 23:18:30 +0000
commit5ac71d9f9e4b413702e53b3c6464c1e249e298be (patch)
tree66de2937670853bca9fadcc801034f3d3635ae37 /win32
parentdc960b8729c195dab6e382d762c88cf904e8e0a2 (diff)
* cygwin/GNUmakefile.in (RUBYDEF): uses mkexports.rb on cygwin too.
* win32/mkexports.rb (Exports::Cygwin): added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rwxr-xr-xwin32/mkexports.rb14
1 files changed, 10 insertions, 4 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index 4d7eeb57eb..22bb2a1936 100755
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -7,14 +7,14 @@ module RbConfig
end
class Exports
- @subclass = []
+ @@subclass = []
def self.inherited(klass)
- @subclass << [/#{klass.name.sub(/.*::/, '').downcase}/i, klass]
+ @@subclass << [/#{klass.name.sub(/.*::/, '').downcase}/i, klass]
end
def self.create(*args, &block)
platform = RUBY_PLATFORM
- pat, klass = @subclass.find {|p, k| p =~ platform}
+ pat, klass = @@subclass.find {|p, k| p =~ platform}
unless klass
raise ArgumentError, "unsupported platform: #{platform}"
end
@@ -128,7 +128,7 @@ class Exports::Mswin < Exports
end
end
-class Exports::Mingw < Exports
+class Exports::Cygwin < Exports
def self.nm
@@nm ||= RbConfig::CONFIG["NM"]
end
@@ -145,6 +145,12 @@ class Exports::Mingw < Exports
objdump(objs) do |l|
yield $2, !$1 if /\s(?:(T)|[[:upper:]])\s_((?!Init_).*)$/ =~ l
end
+ end
+end
+
+class Exports::Mingw < Exports::Cygwin
+ def each_export(objs)
+ super
yield "strcasecmp", "_stricmp"
yield "strncasecmp", "_strnicmp"
end