From 4d53704a7ed802432b85bb4500ba3e40005d0ab3 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 10 Oct 2009 09:19:05 +0000 Subject: * configure.in, Makefile.in (LIBRUBY_SO), common.mk (ruby.imp), win32/mkexports.rb (each_export): exclude _threadptr_ functions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/mkexports.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/mkexports.rb b/win32/mkexports.rb index 36c04d8e4..6ef20eab6 100755 --- a/win32/mkexports.rb +++ b/win32/mkexports.rb @@ -144,7 +144,7 @@ class Exports::Cygwin < Exports def each_export(objs) objdump(objs) do |l| next if /@.*@/ =~ l - yield $2, !$1 if /\s(?:(T)|[[:upper:]])\s_((?!Init_|DllMain@).*)$/ =~ l + yield $2, !$1 if /\s(?:(T)|[[:upper:]])\s_((?!Init_|.*_threadptr_|DllMain@).*)$/ =~ l end end end -- cgit