summaryrefslogtreecommitdiffstats
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
commit7cf15334e98bd4ca69f3b3d4586c1ca81f62ff62 (patch)
tree472f526f7b2ffc1e4f8992e7f12487678e39bf26 /test
parent961d7188795ce06b4e7756234bb8766b2ea9de18 (diff)
downloadruby-7cf15334e98bd4ca69f3b3d4586c1ca81f62ff62.tar.gz
ruby-7cf15334e98bd4ca69f3b3d4586c1ca81f62ff62.tar.xz
ruby-7cf15334e98bd4ca69f3b3d4586c1ca81f62ff62.zip
* test/dl/test_base.rb: Add dragonfly to libc and libm switch.
git-svn-id: http://svn.ruby-lang.org/repos/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 11243dfeb..e24ed7ba2 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