merges r21768 from trunk into ruby_1_9_1.

* cygwin/GNUmakefile.in (RUBYDEF): needs read-only section too.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2009-01-28 11:08:53 +00:00
parent 05392588e8
commit 0a9d7d358a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Jan 25 12:17:21 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* cygwin/GNUmakefile.in (RUBYDEF): needs read-only section too.
Tue Jan 20 15:32:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> Tue Jan 20 15:32:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* Makefile.in (miniruby): renames and then removes, to get rid of * Makefile.in (miniruby): renames and then removes, to get rid of

View file

@ -71,7 +71,7 @@ $(RUBYDEF): $(LIBRUBY_A) $(PREP) $(RBCONFIG)
ifeq (@target_os@,cygwin) ifeq (@target_os@,cygwin)
@NM@ --extern --defined $(LIBRUBY_A) | \ @NM@ --extern --defined $(LIBRUBY_A) | \
$(MINIRUBY) -n -e 'BEGIN{puts "VERSION $(MAJOR).$(MINOR)","EXPORTS"}' \ $(MINIRUBY) -n -e 'BEGIN{puts "VERSION $(MAJOR).$(MINOR)","EXPORTS"}' \
-e 'puts $$1 if / [CDT] _((?!Init_).*)$$/' > $@ -e 'puts $$1 if / [A-Z] _((?!Init_).*)$$/' > $@
else else
$(MINIRUBY) $(srcdir)/win32/mkexports.rb -output=$@ $(LIBRUBY_A) $(MINIRUBY) $(srcdir)/win32/mkexports.rb -output=$@ $(LIBRUBY_A)
endif endif