From 04b672f34b2ff39b90123045ccf3f67b811ff170 Mon Sep 17 00:00:00 2001 From: takano32 Date: Sun, 28 Dec 2008 03:58:02 +0000 Subject: * 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 --- ext/dl/test/test_base.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ext/dl') diff --git a/ext/dl/test/test_base.rb b/ext/dl/test/test_base.rb index a0409b8ae8..8466812a1e 100644 --- a/ext/dl/test/test_base.rb +++ b/ext/dl/test/test_base.rb @@ -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] -- cgit v1.2.3