summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-02 14:41:50 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-02 14:41:50 +0000
commit6cee897b59eafc2d8e2d4390f9f60f1e89e8733d (patch)
tree74476118e4ba3aaa2820703e91d81d8348b74fa7
parent6e0fed271c1d2e6f2b13b99d89d43e7d00e81472 (diff)
* common.mk (bin): add more dependency. a patch from Tadashi
Saito <shiba at mail2.accsnet.ne.jp>. [ruby-dev:30245] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--common.mk28
-rw-r--r--debug.c1
3 files changed, 29 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a98c8f6ac8..53916b63f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 2 23:39:42 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * common.mk (bin): add more dependency. a patch from Tadashi
+ Saito <shiba at mail2.accsnet.ne.jp>. [ruby-dev:30245]
+
Fri Feb 2 18:44:31 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* insns.def (setclassvariable): remove warn argument.
diff --git a/common.mk b/common.mk
index 39cb5a054c..cf09dcba13 100644
--- a/common.mk
+++ b/common.mk
@@ -512,16 +512,34 @@ version.$(OBJEXT): {$(VPATH)}version.c {$(VPATH)}ruby.h config.h \
compile.$(OBJEXT): {$(VPATH)}compile.c {$(VPATH)}yarvcore.h \
{$(VPATH)}compile.h {$(VPATH)}debug.h {$(VPATH)}ruby.h config.h \
+ {$(VPATH)}defines.h {$(VPATH)}missing.h {$(VPATH)}intern.h \
+ {$(VPATH)}st.h {$(VPATH)}node.h {$(VPATH)}yarv.h \
insns.inc insns_info.inc optinsn.inc opt_sc.inc optunifs.inc vm_opts.h
-iseq.$(OBJEXT): {$(VPATH)}iseq.c {$(VPATH)}yarvcore.h {$(VPATH)}debug.h vm_opts.h
+iseq.$(OBJEXT): {$(VPATH)}iseq.c {$(VPATH)}yarvcore.h {$(VPATH)}debug.h \
+ {$(VPATH)}ruby.h {$(VPATH)}defines.h {$(VPATH)}missing.h \
+ {$(VPATH)}intern.h {$(VPATH)}st.h {$(VPATH)}yarv.h \
+ {$(VPATH)}gc.h vm_opts.h insns.inc insns_info.inc
vm.$(OBJEXT): {$(VPATH)}vm.c {$(VPATH)}vm.h {$(VPATH)}insnhelper.h \
{$(VPATH)}yarvcore.h {$(VPATH)}debug.h {$(VPATH)}ruby.h config.h\
+ {$(VPATH)}node.h {$(VPATH)}yarv.h {$(VPATH)}version.h \
+ {$(VPATH)}util.h {$(VPATH)}rubysig.h {$(VPATH)}dln.h \
{$(VPATH)}vm_evalbody.ci {$(VPATH)}call_cfunc.ci \
insns.inc vm.inc vmtc.inc vm_macro.inc vm_opts.h {$(VPATH)}eval_intern.h
-vm_dump.$(OBJEXT): {$(VPATH)}yarvcore.h {$(VPATH)}vm.h
-yarvcore.$(OBJEXT): {$(VPATH)}yarvcore.c {$(VPATH)}yarvcore.h {$(VPATH)}debug.h
-debug.$(OBJEXT): {$(VPATH)}debug.h
-blockinlining.$(OBJEXT): {$(VPATH)}yarv.h {$(VPATH)}yarvcore.h vm_opts.h
+vm_dump.$(OBJEXT): {$(VPATH)}yarvcore.h {$(VPATH)}vm.h config.h \
+ {$(VPATH)}ruby.h {$(VPATH)}defines.h {$(VPATH)}missing.h \
+ {$(VPATH)}intern.h {$(VPATH)}st.h {$(VPATH)}node.h {$(VPATH)}debug.h \
+ {$(VPATH)}yarv.h {$(VPATH)}version.h vm_opts.h
+yarvcore.$(OBJEXT): {$(VPATH)}yarvcore.c {$(VPATH)}yarvcore.h \
+ {$(VPATH)}debug.h {$(VPATH)}ruby.h config.h {$(VPATH)}defines.h \
+ {$(VPATH)}missing.h {$(VPATH)}intern.h {$(VPATH)}st.h \
+ {$(VPATH)}node.h {$(VPATH)}yarv.h {$(VPATH)}gc.h vm_opts.h
+debug.$(OBJEXT): {$(VPATH)}debug.h {$(VPATH)}ruby.h {$(VPATH)}defines.h \
+ {$(VPATH)}missing.h {$(VPATH)}intern.h {$(VPATH)}st.h config.h \
+ {$(VPATH)}st.h
+blockinlining.$(OBJEXT): {$(VPATH)}ruby.h {$(VPATH)}defines.h \
+ {$(VPATH)}missing.h {$(VPATH)}intern.h {$(VPATH)}st.h config.h \
+ {$(VPATH)}node.h {$(VPATH)}yarv.h {$(VPATH)}yarvcore.h \
+ {$(VPATH)}debug.h vm_opts.h
MATZRUBY = $(MATZRUBYDIR)ruby
diff --git a/debug.c b/debug.c
index c143046fe7..a467967f54 100644
--- a/debug.c
+++ b/debug.c
@@ -11,6 +11,7 @@
**********************************************************************/
#include "ruby.h"
+#include "debug.h"
void
debug_indent(int level, int debug_level, int indent_level)