ruby-changes:6818
From: shyouhei <ko1@a...>
Date: Mon, 4 Aug 2008 13:46:28 +0900 (JST)
Subject: [ruby-changes:6818] Ruby:r18335 (ruby_1_8_7): merge revision(s) 18181:
shyouhei 2008-08-04 13:44:17 +0900 (Mon, 04 Aug 2008) New Revision: 18335 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18335 Log: merge revision(s) 18181: * ext/openssl/openssl_missing.h (d2i_of_void): define for older versions. [ruby-dev:35637] Modified files: branches/ruby_1_8_7/ext/openssl/openssl_missing.h branches/ruby_1_8_7/version.h Index: ruby_1_8_7/ext/openssl/openssl_missing.h =================================================================== --- ruby_1_8_7/ext/openssl/openssl_missing.h (revision 18334) +++ ruby_1_8_7/ext/openssl/openssl_missing.h (revision 18335) @@ -15,6 +15,10 @@ extern "C" { #endif +#ifndef TYPEDEF_D2I_OF +typedef char *d2i_of_void(); +#endif + /* * These functions are not included in headers of OPENSSL <= 0.9.6b */ Index: ruby_1_8_7/version.h =================================================================== --- ruby_1_8_7/version.h (revision 18334) +++ ruby_1_8_7/version.h (revision 18335) @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2008-08-04" #define RUBY_VERSION_CODE 187 #define RUBY_RELEASE_CODE 20080804 -#define RUBY_PATCHLEVEL 65 +#define RUBY_PATCHLEVEL 66 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/