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

ruby-changes:31366

From: akr <ko1@a...>
Date: Mon, 28 Oct 2013 12:43:25 +0900 (JST)
Subject: [ruby-changes:31366] akr:r43445 (trunk): * common.mk, ext/objspace/depend, ext/coverage/depend,

akr	2013-10-28 12:43:17 +0900 (Mon, 28 Oct 2013)

  New Revision: 43445

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

  Log:
    * common.mk, ext/objspace/depend, ext/coverage/depend,
      ext/-test-/debug/depend, ext/date/depend: Update dependencies.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
    trunk/ext/-test-/debug/depend
    trunk/ext/coverage/depend
    trunk/ext/date/depend
    trunk/ext/objspace/depend
    trunk/ext/openssl/depend
    trunk/ext/readline/depend
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 43444)
+++ ChangeLog	(revision 43445)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Mon Oct 28 12:42:11 2013  Tanaka Akira  <akr@f...>
+
+	* common.mk, ext/objspace/depend, ext/coverage/depend,
+	  ext/-test-/debug/depend, ext/date/depend: Update dependencies.
+
 Mon Oct 28 09:29:00 2013  Charlie Somerville  <charliesome@r...>
 
 	* vm.c: vm_clear_all_cache is not necessary now we use a 64 bit counter
Index: common.mk
===================================================================
--- common.mk	(revision 43444)
+++ common.mk	(revision 43445)
@@ -698,7 +698,7 @@ marshal.$(OBJEXT): {$(VPATH)}marshal.c $ https://github.com/ruby/ruby/blob/trunk/common.mk#L698
 math.$(OBJEXT): {$(VPATH)}math.c $(RUBY_H_INCLUDES) \
   {$(VPATH)}internal.h
 node.$(OBJEXT): {$(VPATH)}node.c $(RUBY_H_INCLUDES) \
-  $(VM_CORE_H_INCLUDES) {$(VPATH)}vm_opts.h
+  $(VM_CORE_H_INCLUDES) {$(VPATH)}vm_opts.h {$(VPATH)}internal.h
 numeric.$(OBJEXT): {$(VPATH)}numeric.c $(RUBY_H_INCLUDES) \
   {$(VPATH)}util.h $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h {$(VPATH)}id.h
 object.$(OBJEXT): {$(VPATH)}object.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
@@ -743,7 +743,7 @@ regsyntax.$(OBJEXT): {$(VPATH)}regsyntax https://github.com/ruby/ruby/blob/trunk/common.mk#L743
 ruby.$(OBJEXT): {$(VPATH)}ruby.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h \
   $(ENCODING_H_INCLUDES) {$(VPATH)}eval_intern.h $(VM_CORE_H_INCLUDES) \
   {$(VPATH)}dln.h {$(VPATH)}internal.h {$(VPATH)}vm_opts.h
-safe.$(OBJEXT): {$(VPATH)}safe.c $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}vm_opts.h
+safe.$(OBJEXT): {$(VPATH)}safe.c $(RUBY_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}vm_opts.h {$(VPATH)}internal.h
 signal.$(OBJEXT): {$(VPATH)}signal.c $(RUBY_H_INCLUDES) \
   $(VM_CORE_H_INCLUDES) {$(VPATH)}vm_opts.h {$(VPATH)}internal.h {$(VPATH)}ruby_atomic.h {$(VPATH)}eval_intern.h
 sprintf.$(OBJEXT): {$(VPATH)}sprintf.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \
@@ -752,7 +752,7 @@ st.$(OBJEXT): {$(VPATH)}st.c $(RUBY_H_IN https://github.com/ruby/ruby/blob/trunk/common.mk#L752
 strftime.$(OBJEXT): {$(VPATH)}strftime.c $(RUBY_H_INCLUDES) \
   {$(VPATH)}timev.h $(ENCODING_H_INCLUDES)
 string.$(OBJEXT): {$(VPATH)}string.c $(RUBY_H_INCLUDES) {$(VPATH)}re.h \
-  {$(VPATH)}regex.h $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h $(PROBES_H_INCLUDES) {$(VPATH)}vm_opts.h {$(VPATH)}node.h {$(VPATH)}ruby_atomic.h {$(VPATH)}vm_core.h {$(VPATH)}vm_debug.h {$(VPATH)}id.h {$(VPATH)}method.h {$(VPATH)}thread_$(THREAD_MODEL).h
+  {$(VPATH)}regex.h $(ENCODING_H_INCLUDES) {$(VPATH)}internal.h $(PROBES_H_INCLUDES) {$(VPATH)}vm_opts.h {$(VPATH)}node.h {$(VPATH)}ruby_atomic.h {$(VPATH)}vm_core.h {$(VPATH)}vm_debug.h {$(VPATH)}id.h {$(VPATH)}method.h {$(VPATH)}thread_$(THREAD_MODEL).h {$(VPATH)}thread_native.h
 struct.$(OBJEXT): {$(VPATH)}struct.c $(RUBY_H_INCLUDES) {$(VPATH)}internal.h
 thread.$(OBJEXT): {$(VPATH)}thread.c {$(VPATH)}eval_intern.h \
   $(RUBY_H_INCLUDES) {$(VPATH)}gc.h $(VM_CORE_H_INCLUDES) \
@@ -801,7 +801,7 @@ vm_dump.$(OBJEXT): {$(VPATH)}vm_dump.c $ https://github.com/ruby/ruby/blob/trunk/common.mk#L801
   {$(VPATH)}internal.h {$(VPATH)}vm_opts.h
 debug.$(OBJEXT): {$(VPATH)}debug.c $(RUBY_H_INCLUDES) \
   $(ENCODING_H_INCLUDES) $(VM_CORE_H_INCLUDES) {$(VPATH)}eval_intern.h \
-  {$(VPATH)}util.h {$(VPATH)}vm_opts.h
+  {$(VPATH)}util.h {$(VPATH)}vm_opts.h {$(VPATH)}internal.h
 id.$(OBJEXT): {$(VPATH)}id.c $(RUBY_H_INCLUDES) {$(VPATH)}id.h {$(VPATH)}vm_opts.h
 vm_backtrace.$(OBJEXT): {$(VPATH)}vm_backtrace.c \
   $(VM_CORE_H_INCLUDES) $(RUBY_H_INCLUDES) $(ENCODING_H_INCLUDES) \
Index: ext/objspace/depend
===================================================================
--- ext/objspace/depend	(revision 43444)
+++ ext/objspace/depend	(revision 43445)
@@ -7,3 +7,5 @@ objspace.o: $(HDRS) $(ruby_headers) \ https://github.com/ruby/ruby/blob/trunk/ext/objspace/depend#L7
             $(top_srcdir)/node.h $(top_srcdir)/gc.h \
 	    $(hdrdir)/ruby/re.h $(top_srcdir)/node.h $(top_srcdir)/gc.h \
 	    $(top_srcdir)/regint.h $(top_srcdir)/internal.h
+gc_hook.o: $(HDRS) $(ruby_headers) $(hdrdir)/ruby/debug.h
+object_tracing.o: $(HDRS) $(ruby_headers) $(hdrdir)/ruby/debug.h
Index: ext/coverage/depend
===================================================================
--- ext/coverage/depend	(revision 43444)
+++ ext/coverage/depend	(revision 43445)
@@ -6,4 +6,6 @@ $(OBJS): $(HDRS) $(ruby_headers) \ https://github.com/ruby/ruby/blob/trunk/ext/coverage/depend#L6
   {$(VPATH)}id.h \
   $(top_srcdir)/method.h \
   $(top_srcdir)/ruby_atomic.h \
-  $(top_srcdir)/thread_pthread.h
+  $(top_srcdir)/thread_pthread.h \
+  $(top_srcdir)/internal.h \
+  $(top_srcdir)/thread_native.h
Index: ext/-test-/debug/depend
===================================================================
--- ext/-test-/debug/depend	(revision 43444)
+++ ext/-test-/debug/depend	(revision 43445)
@@ -1,2 +1,3 @@ https://github.com/ruby/ruby/blob/trunk/ext/-test-/debug/depend#L1
 init.o: $(HDRS) $(ruby_headers)
 inspector.o: $(HDRS) $(ruby_headers) $(hdrdir)/ruby/debug.h
+profile_frames.o: $(HDRS) $(ruby_headers) $(hdrdir)/ruby/debug.h
Index: ext/date/depend
===================================================================
--- ext/date/depend	(revision 43444)
+++ ext/date/depend	(revision 43445)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ext/date/depend#L1
 $(OBJS): $(ruby_headers)
-date_core.o: date_tmx.h
+date_core.o: date_tmx.h $(hdrdir)/ruby/encoding.h $(hdrdir)/ruby/oniguruma.h
 date_strftime.o: date_tmx.h
+date_parse.o: $(hdrdir)/ruby/encoding.h $(hdrdir)/ruby/oniguruma.h $(hdrdir)/ruby/re.h $(hdrdir)/ruby/regex.h
+date_strptime.o: $(hdrdir)/ruby/encoding.h $(hdrdir)/ruby/oniguruma.h $(hdrdir)/ruby/re.h $(hdrdir)/ruby/regex.h
+
+
Index: ext/openssl/depend
===================================================================
--- ext/openssl/depend	(revision 43444)
+++ ext/openssl/depend	(revision 43445)
@@ -3,3 +3,4 @@ $(OBJS): $(HDRS) $(ruby_headers) \ https://github.com/ruby/ruby/blob/trunk/ext/openssl/depend#L3
   $(hdrdir)/ruby/encoding.h \
   $(hdrdir)/ruby/oniguruma.h \
   $(hdrdir)/ruby/thread.h
+ossl.o: $(top_srcdir)/thread_native.h $(top_srcdir)/thread_pthread.h
Index: ext/readline/depend
===================================================================
--- ext/readline/depend	(revision 43444)
+++ ext/readline/depend	(revision 43445)
@@ -1,4 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/ext/readline/depend#L1
 readline.o: readline.c $(HDRS) $(ruby_headers) \
   $(hdrdir)/ruby/io.h \
   $(hdrdir)/ruby/encoding.h \
-  $(hdrdir)/ruby/oniguruma.h
+  $(hdrdir)/ruby/oniguruma.h \
+  $(hdrdir)/ruby/thread.h

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

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