[前][次][番号順一覧][スレッド一覧]

ruby-changes:25569

From: usa <ko1@a...>
Date: Mon, 12 Nov 2012 14:30:11 +0900 (JST)
Subject: [ruby-changes:25569] usa:r37625 (trunk): * win32/mkexports.rb (each_export): skip garbages generated by VS2012's

usa	2012-11-12 14:29:52 +0900 (Mon, 12 Nov 2012)

  New Revision: 37625

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37625

  Log:
    * win32/mkexports.rb (each_export): skip garbages generated by VS2012's
      nmake.
      reported and patched by Yoshida Masato at [Bug #7333] [ruby-dev:46484]

  Modified files:
    trunk/ChangeLog
    trunk/win32/mkexports.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37624)
+++ ChangeLog	(revision 37625)
@@ -1,3 +1,9 @@
+Mon Nov 12 14:28:01 2012  NAKAMURA Usaku  <usa@r...>
+
+	* win32/mkexports.rb (each_export): skip garbages generated by VS2012's
+	  nmake.
+	  reported and patched by Yoshida Masato at [Bug #7333] [ruby-dev:46484]
+
 Sun Nov 11 18:58:55 2012  Tadayoshi Funaba  <tadf@d...>
 
 	* test/date/test_date_{parse,strptime}.rb: changed the format of
Index: win32/mkexports.rb
===================================================================
--- win32/mkexports.rb	(revision 37624)
+++ win32/mkexports.rb	(revision 37625)
@@ -115,7 +115,7 @@
           next unless l.sub!(/.*?\s(\(\)\s+)?External\s+\|\s+/, '')
           is_data = !$1
           if noprefix or /^[@_]/ =~ l
-            next if /(?!^)@.*@/ =~ l || /@[[:xdigit:]]{8,16}$/ =~ l ||
+            next if /(?!^)@.*@/ =~ l || /@[[:xdigit:]]{8,32}$/ =~ l ||
               /^_?(?:Init_|.*_threadptr_|DllMain\b)/ =~ l
             l.sub!(/^[@_]/, '') if /@\d+$/ !~ l
           elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1')

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]