From 5abe0a9b6955a9a9e86638f5c6a732fd23a3bf1a Mon Sep 17 00:00:00 2001 From: seki Date: Fri, 1 Aug 2003 14:35:51 +0000 Subject: [PATCH] set dldpath on darwin git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ rubytest.rb | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 723a260c8f..25352a6463 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Aug 1 23:33:36 2003 Masatoshi Seki + + * rubytest.rb: set dldpath on darwin. + Fri Aug 1 23:07:38 2003 Minero Aoki * lib/net/http.rb: convert RD to RDoc. Thanks William Webber. diff --git a/rubytest.rb b/rubytest.rb index 841a8758b7..6f717a2b60 100644 --- a/rubytest.rb +++ b/rubytest.rb @@ -17,6 +17,8 @@ if File.exist? CONFIG['LIBRUBY_SO'] dldpath = "LIBPATH" when /-beos/ dldpath = "LIBRARY_PATH" + when /-darwin/ + dldpath = "DYLD_LIBRARY_PATH" else dldpath = "LD_LIBRARY_PATH" end