From 47863c90a100e67ddd7daa3aee6974c6ee55a088 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 23 Jul 2008 08:04:25 +0000 Subject: * ext/openssl/openssl_missing.h (d2i_of_void): define for older versions. [ruby-dev:35637] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18181 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/openssl_missing.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/openssl') diff --git a/ext/openssl/openssl_missing.h b/ext/openssl/openssl_missing.h index f492b9efa..3061a322d 100644 --- a/ext/openssl/openssl_missing.h +++ b/ext/openssl/openssl_missing.h @@ -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 */ -- cgit