1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/mkexports.rb: support VC++.NET.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2002-03-26 05:08:56 +00:00
parent 60f0ff3223
commit 7358ce18d2
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Mar 26 14:08:11 2002 okabe katsuyuki <HGC02147@nifty.ne.jp>
* win32/mkexports.rb: support VC++.NET.
Mon Mar 25 19:30:25 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/extmk.rb.in (arg_config): get rid of single quotes

View file

@ -7,7 +7,7 @@ IO.foreach("|dumpbin -symbols " + objs.join(' ')) do |l|
next if /^[0-9A-F]+ 0+ UNDEF / =~ l
next unless l.sub!(/.*\sExternal\s+\|\s+/, '')
if l.sub!(/^_/, '')
next if /@.*@/ =~ l
next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l
elsif !l.sub!(/^(\S+) \([^@?]*\)$/, '\1')
next
end