ruby-changes:15558
From: mame <ko1@a...>
Date: Sat, 24 Apr 2010 00:38:56 +0900 (JST)
Subject: [ruby-changes:15558] Ruby:r27463 (trunk): * test/dl/test_base.rb: add kfreebsd support. based on a patch from
mame 2010-04-24 00:38:11 +0900 (Sat, 24 Apr 2010) New Revision: 27463 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27463 Log: * test/dl/test_base.rb: add kfreebsd support. based on a patch from Petr Salinger in [ruby-core:29769]. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560293 Modified files: trunk/ChangeLog trunk/test/dl/test_base.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 27462) +++ ChangeLog (revision 27463) @@ -1,3 +1,9 @@ +Sat Apr 24 00:36:05 2010 Yusuke Endoh <mame@t...> + + * test/dl/test_base.rb: add kfreebsd support. based on a patch from + Petr Salinger in [ruby-core:29769]. + http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560293 + Sat Apr 24 00:14:41 2010 NAKAMURA Usaku <usa@r...> * ext/openssl/ossl_ssl_session.c (SSL_SESSION_cmp): remove static for Index: test/dl/test_base.rb =================================================================== --- test/dl/test_base.rb (revision 27462) +++ test/dl/test_base.rb (revision 27463) @@ -29,6 +29,9 @@ when /darwin/ libc_so = "/usr/lib/libc.dylib" libm_so = "/usr/lib/libm.dylib" +when /kfreebsd/ + libc_so = "/lib/libc.so.0.1" + libm_so = "/lib/libm.so.1" when /bsd|dragonfly/ libc_so = "/usr/lib/libc.so" libm_so = "/usr/lib/libm.so" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/