mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ext/dl/test_base.rb : add BSD's case.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f6cc65ae48
commit
6e658ea392
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Dec 28 21:33:52 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* test/ext/dl/test_base.rb : add BSD's case.
|
||||
|
||||
Sun Dec 28 21:09:12 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||
|
||||
* ext/dl/lib/dl/import.rb (DL::Importer#sizeof): follows
|
||||
|
|
|
@ -14,6 +14,9 @@ when /mingw/, /mswin32/
|
|||
when /darwin/
|
||||
LIBC_SO = "/usr/lib/libc.dylib"
|
||||
LIBM_SO = "/usr/lib/libm.dylib"
|
||||
when /bsd/
|
||||
LIBC_SO = "/usr/lib/libc.so"
|
||||
LIBM_SO = "/usr/lib/libm.so"
|
||||
else
|
||||
LIBC_SO = ARGV[0]
|
||||
LIBM_SO = ARGV[1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue