From 9f41782ec8170c69598f49c6fedf5e7ca35724a4 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 14 Aug 2010 10:12:13 +0000 Subject: * ext/{coverage,objspace}/extconf.rb ($INCFLAGS): explicitly add topdir and top_srcdir. [ruby-dev:42031] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/coverage/coverage.c | 2 +- ext/coverage/extconf.rb | 1 + ext/objspace/extconf.rb | 2 +- ext/objspace/objspace.c | 6 +++--- 4 files changed, 6 insertions(+), 5 deletions(-) (limited to 'ext') diff --git a/ext/coverage/coverage.c b/ext/coverage/coverage.c index 347888e96e..29ac7090f3 100644 --- a/ext/coverage/coverage.c +++ b/ext/coverage/coverage.c @@ -9,7 +9,7 @@ ************************************************/ #include "ruby.h" -#include "../../vm_core.h" +#include "vm_core.h" /* * call-seq: diff --git a/ext/coverage/extconf.rb b/ext/coverage/extconf.rb index 3ebced54a6..cf10ca89c5 100644 --- a/ext/coverage/extconf.rb +++ b/ext/coverage/extconf.rb @@ -1,2 +1,3 @@ require 'mkmf' +$INCFLAGS << " -I$(topdir) -I$(top_srcdir)" create_makefile('coverage') diff --git a/ext/objspace/extconf.rb b/ext/objspace/extconf.rb index a0cc3cecce..23a42c4c20 100644 --- a/ext/objspace/extconf.rb +++ b/ext/objspace/extconf.rb @@ -1,2 +1,2 @@ - +$INCFLAGS << " -I$(topdir) -I$(top_srcdir)" create_makefile('objspace') diff --git a/ext/objspace/objspace.c b/ext/objspace/objspace.c index 58a8e61d75..a08f7738aa 100644 --- a/ext/objspace/objspace.c +++ b/ext/objspace/objspace.c @@ -27,9 +27,9 @@ #include #include #include -#include <../../node.h> -#include <../../gc.h> -#include <../../regint.h> +#include "node.h" +#include "gc.h" +#include "regint.h" size_t rb_str_memsize(VALUE); size_t rb_ary_memsize(VALUE); -- cgit v1.2.3