1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* include/ruby/intern.h (HAVE_RUBY_RUBY_H): defines macros so that

extconf.rb do not need to check if headers exist under separated
  directory.  [ruby-dev:35437]

* include/{ruby,rubyio,rubysig}.h, include/ruby/intern.h: use
  "ruby/..." instead of <ruby/...>.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-07-12 13:30:46 +00:00
parent f94f8f351e
commit 7365301470
5 changed files with 32 additions and 5 deletions

View file

@ -1,3 +1,12 @@
Sat Jul 12 22:30:43 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* include/ruby/intern.h (HAVE_RUBY_RUBY_H): defines macros so that
extconf.rb do not need to check if headers exist under separated
directory. [ruby-dev:35437]
* include/{ruby,rubyio,rubysig}.h, include/ruby/intern.h: use
"ruby/..." instead of <ruby/...>.
Sat Jul 12 22:17:26 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (sizeof ptrdiff_t): check for size of ptrdiff_t.

View file

@ -12,9 +12,27 @@
#ifndef RUBY_H
#define RUBY_H 1
#include <ruby/ruby.h>
#define HAVE_RUBY_DEFINES_H 1
#define HAVE_RUBY_ENCODING_H 1
#define HAVE_RUBY_INTERN_H 1
#define HAVE_RUBY_IO_H 1
#define HAVE_RUBY_MISSING_H 1
#define HAVE_RUBY_MVM_H 1
#define HAVE_RUBY_NODE_H 1
#define HAVE_RUBY_ONIGURUMA_H 1
#define HAVE_RUBY_RE_H 1
#define HAVE_RUBY_REGEX_H 1
#define HAVE_RUBY_RUBY_H 1
#define HAVE_RUBY_SIGNAL_H 1
#define HAVE_RUBY_ST_H 1
#define HAVE_RUBY_UTIL_H 1
#ifdef _WIN32
#define HAVE_RUBY_WIN32_H 1
#endif
#include "ruby/ruby.h"
#if RUBY_VM
#include <ruby/mvm.h>
#include "ruby/mvm.h"
#endif
extern void ruby_set_debug_option(const char *);

View file

@ -26,7 +26,7 @@ extern "C" {
#else
# include <varargs.h>
#endif
#include <ruby/st.h>
#include "ruby/st.h"
/*
* Functions and variables that are used by more than one source file of

View file

@ -1 +1 @@
#include <ruby/io.h>
#include "ruby/io.h"

View file

@ -1 +1 @@
#include <ruby/signal.h>
#include "ruby/signal.h"