mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
05209bdadd
commit
f991d20910
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Sat Apr 24 00:36:05 2010 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* 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@ruby-lang.org>
|
||||
|
||||
* ext/openssl/ossl_ssl_session.c (SSL_SESSION_cmp): remove static for
|
||||
|
|
|
@ -29,6 +29,9 @@ when /mingw/, /mswin/
|
|||
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"
|
||||
|
|
Loading…
Reference in a new issue