mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/json/ext/generator/generator.c (Init_generator): requires
json/common.rb for GeneratorError, when static linked. a patch from Kenta Murata <muraken AT gmail.com> in [ruby-dev:32789]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ce9df5d01e
commit
db5a25f3f3
3 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Dec 26 00:57:53 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/json/ext/generator/generator.c (Init_generator): requires
|
||||
json/common.rb for GeneratorError, when static linked. a patch from
|
||||
Kenta Murata <muraken AT gmail.com> in [ruby-dev:32789].
|
||||
|
||||
Tue Dec 25 23:33:55 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* development version 1.9.0 released.
|
||||
|
|
|
@ -802,6 +802,7 @@ static VALUE cState_forget(VALUE self, VALUE object)
|
|||
*/
|
||||
void Init_generator()
|
||||
{
|
||||
rb_require("json/common");
|
||||
mJSON = rb_define_module("JSON");
|
||||
mExt = rb_define_module_under(mJSON, "Ext");
|
||||
mGenerator = rb_define_module_under(mExt, "Generator");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.9.0"
|
||||
#define RUBY_RELEASE_DATE "2007-12-25"
|
||||
#define RUBY_RELEASE_DATE "2007-12-26"
|
||||
#define RUBY_VERSION_CODE 190
|
||||
#define RUBY_RELEASE_CODE 20071225
|
||||
#define RUBY_RELEASE_CODE 20071226
|
||||
#define RUBY_PATCHLEVEL 0
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 0
|
||||
#define RUBY_RELEASE_YEAR 2007
|
||||
#define RUBY_RELEASE_MONTH 12
|
||||
#define RUBY_RELEASE_DAY 25
|
||||
#define RUBY_RELEASE_DAY 26
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue