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:
parent
f94f8f351e
commit
7365301470
5 changed files with 32 additions and 5 deletions
|
@ -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 *);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue