From 3f0768897059b942f7ae9276f0fe2d4ae6611a5b Mon Sep 17 00:00:00 2001 From: seki Date: Fri, 1 Aug 2003 14:35:51 +0000 Subject: set dldpath on darwin git-svn-id: http://svn.ruby-lang.org/repos/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 723a260c8..25352a646 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 841a8758b..6f717a2b6 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 -- cgit