summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-05 01:33:22 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-05 01:33:22 +0000
commit9e75b2670227ee1b765f88a6e025f5584faa9844 (patch)
tree472f526f7b2ffc1e4f8992e7f12487678e39bf26 /test
parent3dc758d96601532e4ff27ab002cb558be7631396 (diff)
* 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
Diffstat (limited to 'test')
-rw-r--r--test/dl/test_base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dl/test_base.rb b/test/dl/test_base.rb
index 11243dfebd..e24ed7ba2c 100644
--- a/test/dl/test_base.rb
+++ b/test/dl/test_base.rb
@@ -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