ruby-changes:10346
From: yugui <ko1@a...>
Date: Fri, 30 Jan 2009 13:22:57 +0900 (JST)
Subject: [ruby-changes:10346] Ruby:r21890 (ruby_1_9_1): merges r21888 from trunk into ruby_1_9_1.
yugui 2009-01-30 13:22:41 +0900 (Fri, 30 Jan 2009) New Revision: 21890 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21890 Log: merges r21888 from trunk into ruby_1_9_1. * cygwin/GNUmakefile.in (RUBYDEF): adds DATA to non-function symbols which is not marked as T. Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/cygwin/GNUmakefile.in Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 21889) +++ ruby_1_9_1/ChangeLog (revision 21890) @@ -1,3 +1,8 @@ +Fri Jan 30 12:57:28 2009 Nobuyoshi Nakada <nobu@r...> + + * cygwin/GNUmakefile.in (RUBYDEF): adds DATA to non-function symbols + which is not marked as T. + Tue Jan 20 16:17:12 2009 Nobuyoshi Nakada <nobu@r...> * cont.c (ruby_Init_{Continuation_body,Fiber_as_Coroutine}): prefixed Index: ruby_1_9_1/cygwin/GNUmakefile.in =================================================================== --- ruby_1_9_1/cygwin/GNUmakefile.in (revision 21889) +++ ruby_1_9_1/cygwin/GNUmakefile.in (revision 21890) @@ -71,7 +71,7 @@ ifeq (@target_os@,cygwin) @NM@ --extern --defined $(LIBRUBY_A) | \ $(MINIRUBY) -n -e 'BEGIN{puts "VERSION $(MAJOR).$(MINOR)","EXPORTS"}' \ - -e 'if / (?:(T)|[A-Z]) _((?!Init_).*)$$/; puts "#{$$2}#{" DATA" if $$1}"; end' > $@ + -e 'if / (?:(T)|[A-Z]) _((?!Init_).*)$$/; puts "#{$$2}#{" DATA" if !$$1}"; end' > $@ else $(MINIRUBY) $(srcdir)/win32/mkexports.rb -output=$@ $(LIBRUBY_A) endif -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/