mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8cd252ac6f
- remove blockinlining.$(OBJEXT) to built - make ENCODING_H_INCLDUES variable (include/ruby/encoding.h) - make VM_CORE_H_INCLUDES variable (vm_core.h) - simplify rules. - make depends rule to output depend status using gcc -MM. * include/ruby/mvm.h, include/ruby/vm.h: rename mvm.h to vm.h. * include/ruby.h: ditto. * load.c: add inclusion explicitly. * enumerator.c, object.c, parse.y, thread.c, vm_dump.c: remove useless inclusion. * eval_intern.h: cleanup inclusion. * vm_core.h: rb_thread_t should be defined in this file. * vm_evalbody.c, vm_exec.c: rename vm_evalbody.c to vm_exec.c. * vm.h, vm_exec.h: rename vm.h to vm_exec.h. * insnhelper.h, vm_insnhelper.h: rename insnhelper.h to vm_insnhelper.h. * vm.c, vm_insnhelper.c, vm_insnhelper.h: - rename vm_eval() to vm_exec_core(). - rename vm_eval_body() to vm_exec(). - cleanup include order. * vm_method.c: fix comment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
35 lines
872 B
C
35 lines
872 B
C
/**********************************************************************
|
|
|
|
ruby/mvm.h -
|
|
|
|
$Author$
|
|
created at: Sun 10 12:06:15 Jun JST 2007
|
|
|
|
Copyright (C) 2007-2008 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef RUBY_H
|
|
#define RUBY_H 1
|
|
|
|
#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"
|
|
|
|
#endif /* RUBY_H */
|