aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwanabe <wanabe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-05 13:20:49 +0000
committerwanabe <wanabe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-05 13:20:49 +0000
commit349c3c7a8caea17e12286bbde730e5808fc8326e (patch)
tree5f0bd730dbc5c01726c7a2fd9952dc0769d468dc
parentd3dabbca718a64083b154e03227d9f0c099401ff (diff)
downloadruby-349c3c7a8caea17e12286bbde730e5808fc8326e.tar.gz
* win32/mkexports.rb: revert r29320 and r29402.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rwxr-xr-xwin32/mkexports.rb5
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ec8d463a88..5f719aaae7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Oct 5 22:17:02 2010 wanabe <s.wanabe@gmail.com>
+
+ * win32/mkexports.rb: revert r29320 and r29402.
+
Mon Oct 4 12:43:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (regexp): dregexp has literal string only at the head
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