summaryrefslogtreecommitdiff
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
Diffstat (limited to 'win32/mkexports.rb')
-rwxr-xr-xwin32/mkexports.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index 1317f1b601..e96f9339d0 100755
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -151,10 +151,7 @@ end
class Exports::Mingw < Exports::Cygwin
def each_export(objs)
- objdump(objs) do |l|
- next if /@.*@/ =~ l
- yield $2, !$1 if /\s(?:(T)|[[:upper:]])\s_?((?!_?Init_|_?.*_threadptr_|_?DllMain[@\n]).*)$/ =~ l
- end
+ super
yield "strcasecmp", "_stricmp"
yield "strncasecmp", "_strnicmp"
end