diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-29 07:18:55 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-29 07:18:55 +0000 |
| commit | 31513fce6de399451e094d29fe777fb24db3d786 (patch) | |
| tree | 3178feabb3fb6078f70fe395f35f7c6e0aff8ab8 /ext | |
| parent | af83bfb4577bac9bd72880fb6dcf9f8c8895aacb (diff) | |
merges r21139 from trunk into ruby_1_9_1.
* test/ext/dl/test_base.rb : add BSD's case.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/dl/test/test_base.rb | 3 |
1 files changed, 3 insertions, 0 deletions
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] |
