[前][次][番号順一覧][スレッド一覧]

ruby-changes:6665

From: nobu <ko1@a...>
Date: Wed, 23 Jul 2008 17:06:55 +0900 (JST)
Subject: [ruby-changes:6665] Ruby:r18181 (ruby_1_8, trunk): * ext/openssl/openssl_missing.h (d2i_of_void): define for older

nobu	2008-07-23 17:04:25 +0900 (Wed, 23 Jul 2008)

  New Revision: 18181

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18181

  Log:
    * ext/openssl/openssl_missing.h (d2i_of_void): define for older
      versions.  [ruby-dev:35637]

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/ext/openssl/openssl_missing.h
    trunk/ChangeLog
    trunk/ext/openssl/openssl_missing.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18180)
+++ ChangeLog	(revision 18181)
@@ -1,3 +1,8 @@
+Wed Jul 23 17:04:22 2008  Nobuyoshi Nakada  <nobu@r...>
+
+	* ext/openssl/openssl_missing.h (d2i_of_void): define for older
+	  versions.  [ruby-dev:35637]
+
 Wed Jul 23 13:53:36 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* ext/curses/extconf.rb: use try_static_assert.
Index: ext/openssl/openssl_missing.h
===================================================================
--- ext/openssl/openssl_missing.h	(revision 18180)
+++ ext/openssl/openssl_missing.h	(revision 18181)
@@ -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/ext/openssl/openssl_missing.h
===================================================================
--- ruby_1_8/ext/openssl/openssl_missing.h	(revision 18180)
+++ ruby_1_8/ext/openssl/openssl_missing.h	(revision 18181)
@@ -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/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 18180)
+++ ruby_1_8/ChangeLog	(revision 18181)
@@ -1,3 +1,8 @@
+Wed Jul 23 17:04:22 2008  Nobuyoshi Nakada  <nobu@r...>
+
+	* ext/openssl/openssl_missing.h (d2i_of_void): define for older
+	  versions.  [ruby-dev:35637]
+
 Wed Jul 23 13:53:36 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* ext/curses/extconf.rb: use try_static_assert.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]