* 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
@ -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>
|
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
|
* ext/openssl/ossl_ssl_session.c (SSL_SESSION_cmp): remove static for
|
||||||
|
@ -29,6 +29,9 @@ when /mingw/, /mswin/
|
|||||||
when /darwin/
|
when /darwin/
|
||||||
libc_so = "/usr/lib/libc.dylib"
|
libc_so = "/usr/lib/libc.dylib"
|
||||||
libm_so = "/usr/lib/libm.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/
|
when /bsd|dragonfly/
|
||||||
libc_so = "/usr/lib/libc.so"
|
libc_so = "/usr/lib/libc.so"
|
||||||
libm_so = "/usr/lib/libm.so"
|
libm_so = "/usr/lib/libm.so"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user