ruby-changes:32521
From: naruse <ko1@a...>
Date: Wed, 15 Jan 2014 10:46:08 +0900 (JST)
Subject: [ruby-changes:32521] naruse:r44600 (trunk): same as r44598
naruse 2014-01-15 10:46:03 +0900 (Wed, 15 Jan 2014) New Revision: 44600 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44600 Log: same as r44598 Modified files: trunk/test/dl/test_handle.rb trunk/test/fiddle/test_handle.rb Index: test/fiddle/test_handle.rb =================================================================== --- test/fiddle/test_handle.rb (revision 44599) +++ test/fiddle/test_handle.rb (revision 44600) @@ -183,7 +183,7 @@ module Fiddle https://github.com/ruby/ruby/blob/trunk/test/fiddle/test_handle.rb#L183 # In general uses of dlerror(3) should call it before use it. require 'socket' Socket.gethostbyname("localhost") - Fiddle.dlopen("/usr/lib/libc.so").sym('strcpy') + Fiddle.dlopen("/lib/libc.so.7").sym('strcpy') end if /freebsd/=~ RUBY_PLATFORM end end if defined?(Fiddle) Index: test/dl/test_handle.rb =================================================================== --- test/dl/test_handle.rb (revision 44599) +++ test/dl/test_handle.rb (revision 44600) @@ -181,7 +181,7 @@ module DL https://github.com/ruby/ruby/blob/trunk/test/dl/test_handle.rb#L181 # In general uses of dlerror(3) should call it before use it. require 'socket' Socket.gethostbyname("localhost") - DL.dlopen("/usr/lib/libc.so").sym('strcpy') + DL.dlopen("/lib/libc.so.7").sym('strcpy') end if /freebsd/=~ RUBY_PLATFORM end end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/