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/objspace/extconf.rb | 2 +- ext/objspace/objspace.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/objspace') 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