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

ruby-changes:31405

From: usa <ko1@a...>
Date: Thu, 31 Oct 2013 23:13:47 +0900 (JST)
Subject: [ruby-changes:31405] usa:r43484 (ruby_1_9_3): merge revision(s) 43077, 43078: [Backport #8999]

usa	2013-10-31 23:13:40 +0900 (Thu, 31 Oct 2013)

  New Revision: 43484

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

  Log:
    merge revision(s) 43077,43078: [Backport #8999]
    
    * test/dl/test_base.rb: {libc, libm} detection now handle GNU/Hurd
      correctly. Patch by Gabriele Giacone (1o5g4r8o@g...).
    
    * test/fiddle/helper.rb: ditto.
      [Bug #8937][ruby-core:57311]

  Modified directories:
    branches/ruby_1_9_3/
  Modified files:
    branches/ruby_1_9_3/ChangeLog
    branches/ruby_1_9_3/test/dl/test_base.rb
    branches/ruby_1_9_3/test/fiddle/helper.rb
    branches/ruby_1_9_3/version.h
Index: ruby_1_9_3/ChangeLog
===================================================================
--- ruby_1_9_3/ChangeLog	(revision 43483)
+++ ruby_1_9_3/ChangeLog	(revision 43484)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/ChangeLog#L1
+Thu Oct 31 23:10:30 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* test/dl/test_base.rb: {libc, libm} detection now handle GNU/Hurd
+	  correctly. Patch by Gabriele Giacone (1o5g4r8o@g...).
+	  [Bug #8937][ruby-core:57311]
+	* test/fiddle/helper.rb: ditto.
+
 Thu Oct 31 23:05:33 2013  Tanaka Akira  <akr@f...>
 
 	* lib/time.rb (Time.strptime): Time.strptime('0', '%s') returns local
Index: ruby_1_9_3/version.h
===================================================================
--- ruby_1_9_3/version.h	(revision 43483)
+++ ruby_1_9_3/version.h	(revision 43484)
@@ -1,5 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/version.h#L1
 #define RUBY_VERSION "1.9.3"
-#define RUBY_PATCHLEVEL 472
+#define RUBY_PATCHLEVEL 473
 
 #define RUBY_RELEASE_DATE "2013-10-31"
 #define RUBY_RELEASE_YEAR 2013
Index: ruby_1_9_3/test/fiddle/helper.rb
===================================================================
--- ruby_1_9_3/test/fiddle/helper.rb	(revision 43483)
+++ ruby_1_9_3/test/fiddle/helper.rb	(revision 43484)
@@ -38,6 +38,9 @@ when /kfreebsd/ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/test/fiddle/helper.rb#L38
 when /bsd|dragonfly/
   libc_so = "/usr/lib/libc.so"
   libm_so = "/usr/lib/libm.so"
+when /gnu/	#GNU/Hurd
+  libc_so = "/lib/libc.so.0.3"
+  libm_so = "/lib/libm.so.6"
 when /solaris/
   libdir = '/lib'
   case [0].pack('L!').size
Index: ruby_1_9_3/test/dl/test_base.rb
===================================================================
--- ruby_1_9_3/test/dl/test_base.rb	(revision 43483)
+++ ruby_1_9_3/test/dl/test_base.rb	(revision 43484)
@@ -32,6 +32,9 @@ when /darwin/ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/test/dl/test_base.rb#L32
 when /kfreebsd/
   libc_so = "/lib/libc.so.0.1"
   libm_so = "/lib/libm.so.1"
+when /gnu/	#GNU/Hurd
+  libc_so = "/lib/libc.so.0.3"
+  libm_so = "/lib/libm.so.6"
 when /bsd|dragonfly/
   libc_so = "/usr/lib/libc.so"
   libm_so = "/usr/lib/libm.so"

Property changes on: ruby_1_9_3
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r43077-43078


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

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