diff options
-rw-r--r-- | version.c | 24 |
1 files changed, 18 insertions, 6 deletions
@@ -33,7 +33,7 @@ const char ruby_release_date[] = RUBY_RELEASE_DATE; const char ruby_platform[] = RUBY_PLATFORM; const int ruby_level = RUBY_LEVEL; const char ruby_description[] = RUBY_DESCRIPTION_WITH(""); -const char ruby_description_with_jit[] = RUBY_DESCRIPTION_WITH(" +JIT"); const char ruby_copyright[] = RUBY_COPYRIGHT; const char ruby_engine[] = "ruby"; @@ -67,11 +67,6 @@ Init_version(void) */ rb_define_global_const("RUBY_REVISION", MKINT(revision)); /* - * The full ruby version string, like <tt>ruby -v</tt> prints' - * This might be overwritten by mjit_init(). - */ - rb_define_global_const("RUBY_DESCRIPTION", MKSTR(description)); - /* * The copyright string for ruby */ rb_define_global_const("RUBY_COPYRIGHT", MKSTR(copyright)); @@ -86,6 +81,23 @@ Init_version(void) rb_define_global_const("RUBY_ENGINE_VERSION", (1 ? version : MKSTR(version))); } /*! Prints the version information of the CRuby interpreter to stdout. */ void ruby_show_version(void) |