diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-01-15 01:25:28 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-01-15 01:25:28 +0000 |
commit | c9c6e3ef39958d6f0ef87571700e60d0d0ef271c (patch) | |
tree | 115c2a90296d6854573339ff65f5a0356dddc9d5 | |
parent | 57151af3d9cbdd14dfea70fdd3ac62fa16d2c3c9 (diff) |
/usr/lib/libc.so is not symlink on FreeBSD 10
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/dl/test_base.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dl/test_base.rb b/test/dl/test_base.rb index a07056d142..dafba6e44d 100644 --- a/test/dl/test_base.rb +++ b/test/dl/test_base.rb @@ -39,6 +39,9 @@ when /gnu/ #GNU/Hurd when /mirbsd/ libc_so = "/usr/lib/libc.so.41.10" libm_so = "/usr/lib/libm.so.7.0" +when /freebsd/ + libc_so = "/lib/libc.so.7" + libm_so = "/lib/libm.so.5" when /bsd|dragonfly/ libc_so = "/usr/lib/libc.so" libm_so = "/usr/lib/libm.so" |