1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/dl/test_base.rb: Add dragonfly to libc and libm switch.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22776 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-03-05 01:33:22 +00:00
parent 3dc758d966
commit 9e75b26702
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Mar 5 10:32:17 2009 NARUSE, Yui <naruse@ruby-lang.org>
* test/dl/test_base.rb: Add dragonfly to libc and libm switch.
Thu Mar 5 10:29:10 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* string.c (str_eql): extracted from rb_str_equal and rb_str_eql.

View file

@ -26,7 +26,7 @@ when /mingw/, /mswin32/
when /darwin/
LIBC_SO = "/usr/lib/libc.dylib"
LIBM_SO = "/usr/lib/libm.dylib"
when /bsd/
when /bsd|dragonfly/
LIBC_SO = "/usr/lib/libc.so"
LIBM_SO = "/usr/lib/libm.so"
else