Skip to content

Commit 2ae40ae

Browse files
committed
merge revision(s) 18181:
* ext/openssl/openssl_missing.h (d2i_of_void): define for older versions. [ruby-dev:35637] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@18335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 3fcb394 commit 2ae40ae

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ext/openssl/openssl_missing.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
extern "C" {
1616
#endif
1717

18+
#ifndef TYPEDEF_D2I_OF
19+
typedef char *d2i_of_void();
20+
#endif
21+
1822
/*
1923
* These functions are not included in headers of OPENSSL <= 0.9.6b
2024
*/

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2008-08-04"
33
#define RUBY_VERSION_CODE 187
44
#define RUBY_RELEASE_CODE 20080804
5-
#define RUBY_PATCHLEVEL 65
5+
#define RUBY_PATCHLEVEL 66
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)