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

* ext/syck/rubyext.c: add encoding header.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-06-16 21:25:17 +00:00
parent 77773831db
commit aaf1b72873
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Tue Jun 17 06:24:28 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ext/syck/rubyext.c: add encoding header.
Tue Jun 17 01:52:50 2008 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/tcltklib.c: SEGV when exit.

View file

@ -8,6 +8,7 @@
*/
#include "ruby/ruby.h"
#include "ruby/encoding.h"
#include "syck.h"
#include <sys/types.h>
#include <time.h>

View file

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2008-06-16"
#define RUBY_RELEASE_DATE "2008-06-17"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20080616
#define RUBY_RELEASE_CODE 20080617
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 6
#define RUBY_RELEASE_DAY 16
#define RUBY_RELEASE_DAY 17
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];