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

ruby-changes:35545

From: usa <ko1@a...>
Date: Fri, 19 Sep 2014 00:26:24 +0900 (JST)
Subject: [ruby-changes:35545] usa:r47627 (ruby_2_0_0): merge revision(s) 45540: [Backport #9910]

usa	2014-09-19 00:26:17 +0900 (Fri, 19 Sep 2014)

  New Revision: 47627

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

  Log:
    merge revision(s) 45540: [Backport #9910]
    
    ossl.c: OPENSSL_LIBRARY_VERSION
    
    * ext/openssl/ossl.c (Init_openssl): add constant OPENSSL_LIBRARY_VERSION
      which tells the version running OpenSSL.  [EXPERIMENTAL]

  Modified directories:
    branches/ruby_2_0_0/
  Modified files:
    branches/ruby_2_0_0/ext/openssl/ossl.c
    branches/ruby_2_0_0/version.h
Index: ruby_2_0_0/ext/openssl/ossl.c
===================================================================
--- ruby_2_0_0/ext/openssl/ossl.c	(revision 47626)
+++ ruby_2_0_0/ext/openssl/ossl.c	(revision 47627)
@@ -994,6 +994,11 @@ Init_openssl() https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ext/openssl/ossl.c#L994
     rb_define_const(mOSSL, "OPENSSL_VERSION", rb_str_new2(OPENSSL_VERSION_TEXT));
 
     /*
+     * Version of OpenSSL the ruby OpenSSL extension is running with
+     */
+    rb_define_const(mOSSL, "OPENSSL_LIBRARY_VERSION", rb_str_new2(SSLeay_version(SSLEAY_VERSION)));
+
+    /*
      * Version number of OpenSSL the ruby OpenSSL extension was built with
      * (base 16)
      */
Index: ruby_2_0_0/version.h
===================================================================
--- ruby_2_0_0/version.h	(revision 47626)
+++ ruby_2_0_0/version.h	(revision 47627)
@@ -1,10 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/version.h#L1
 #define RUBY_VERSION "2.0.0"
-#define RUBY_RELEASE_DATE "2014-09-17"
-#define RUBY_PATCHLEVEL 575
+#define RUBY_RELEASE_DATE "2014-09-19"
+#define RUBY_PATCHLEVEL 576
 
 #define RUBY_RELEASE_YEAR 2014
 #define RUBY_RELEASE_MONTH 9
-#define RUBY_RELEASE_DAY 17
+#define RUBY_RELEASE_DAY 19
 
 #include "ruby/version.h"
 

Property changes on: ruby_2_0_0
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r45540


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

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