From 634a2f02f90e9c83b99f82fb947c4d17c8f062df Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 11 Dec 2008 02:11:09 +0000 Subject: * include/ruby/st.h (size_t): needs stddef.h or stdlib.h. [ruby-core:20339] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ include/ruby/st.h | 13 +++++++++++++ version.h | 6 +++--- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1d9dacf96..aad92f1f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 11 11:11:03 2008 Nobuyoshi Nakada + + * include/ruby/st.h (size_t): needs stddef.h or stdlib.h. + [ruby-core:20339] + Wed Dec 10 01:28:46 2008 NAKAMURA Usaku * common.mk (win32.obj): depend on headers. diff --git a/include/ruby/st.h b/include/ruby/st.h index 84ef72b44..31bac7b1a 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -12,6 +12,19 @@ extern "C" { #endif #endif +#ifndef RUBY_LIB +#include "ruby/config.h" +#ifdef RUBY_EXTCONF_H +#include RUBY_EXTCONF_H +#endif +#endif + +#if defined STDC_HEADERS +#include +#elif defined HAVE_STDLIB_H +#include +#endif + #if SIZEOF_LONG == SIZEOF_VOIDP typedef unsigned long st_data_t; #elif SIZEOF_LONG_LONG == SIZEOF_VOIDP diff --git a/version.h b/version.h index aa90d21e7..55ab8a0e3 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.1" -#define RUBY_RELEASE_DATE "2008-12-10" +#define RUBY_RELEASE_DATE "2008-12-11" #define RUBY_VERSION_CODE 191 -#define RUBY_RELEASE_CODE 20081210 +#define RUBY_RELEASE_CODE 20081211 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 1 #define RUBY_RELEASE_YEAR 2008 #define RUBY_RELEASE_MONTH 12 -#define RUBY_RELEASE_DAY 10 +#define RUBY_RELEASE_DAY 11 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; -- cgit