summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-28 12:42:39 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-28 12:42:39 +0000
commit272a8110aa287746859a38362509378775bae54c (patch)
tree0f7ff058a904a890a50d4ebb4e16701d520e0068
parent8c83986f67daecf0ffd0a137be1f8a7be08132b3 (diff)
downloadruby-272a8110aa287746859a38362509378775bae54c.tar.gz
ruby-272a8110aa287746859a38362509378775bae54c.tar.xz
ruby-272a8110aa287746859a38362509378775bae54c.zip
* test/ext/dl/test_base.rb : add BSD's case.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/dl/test/test_base.rb3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bb0eb377c..b49426290 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/ext/dl/test/test_base.rb b/ext/dl/test/test_base.rb
index 0e14c8dca..e8c50397e 100644
--- a/ext/dl/test/test_base.rb
+++ b/ext/dl/test/test_base.rb
@@ -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]