1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/dl/test/test_base.rb: use libc.dylib when the platform is darwin.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
takano32 2008-12-28 03:58:02 +00:00
parent b66af67f21
commit 04b672f34b
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Dec 28 12:53:10 2008 TAKANO Mitsuhiro (takano32) <tak@no32.tk>
* ext/dl/test/test_base.rb: use libc.dylib when the platform is darwin.
Sun Dec 28 12:24:14 2008 Yusuke Endoh <mame@tsg.ne.jp>
* thread.c (mutex_free, mutex_unlock): add qualifiers.

View file

@ -14,6 +14,9 @@ when /linux/
when /mingw/, /mswin32/
LIBC_SO = "msvcrt.dll"
LIBM_SO = "msvcrt.dll"
when /darwin/
LIBC_SO = "/usr/lib/libc.dylib"
LIBM_SO = "/usr/lib/libm.dylib"
else
LIBC_SO = ARGV[0]
LIBM_SO = ARGV[1]