summaryrefslogtreecommitdiff
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-16 09:52:10 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-16 09:52:10 +0000
commitcb40b39a2f20d10f9b3b8f62487b3fb1e413f1b1 (patch)
tree69a433610e4e55611a636d9f4be2cb166febff42 /win32/mkexports.rb
parent5afbff7bc27fc2a937ed15429e0ade9d98460907 (diff)
* win32/mkexports.rb (Exports::Mswin#each_export): exclude Init_
and _threadptr_ functions, as well as mingw. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/mkexports.rb')
-rwxr-xr-xwin32/mkexports.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index 06f8c8ddbb..9b450519ce 100755
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -111,7 +111,8 @@ class Exports::Mswin < Exports
next unless l.sub!(/.*?\s(\(\)\s+)?External\s+\|\s+/, '')
is_data = !$1
if noprefix or /^[@_]/ =~ l
- next if /(?!^)@.*@/ =~ l || /@[[:xdigit:]]{8,16}$/ =~ l || /^_DllMain@/ =~ l
+ next if /(?!^)@.*@/ =~ l || /@[[:xdigit:]]{8,16}$/ =~ l ||
+ /^_(?:Init_|.*_threadptr_|DllMain@)/ =~ l
l.sub!(/^[@_]/, '') if /@\d+$/ !~ l
elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1')
next