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

set dldpath on darwin

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2003-08-01 14:35:51 +00:00
parent a2ef7ef62c
commit 5abe0a9b69
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Fri Aug 1 23:33:36 2003 Masatoshi Seki <mas@snow.local.>
* rubytest.rb: set dldpath on darwin.
Fri Aug 1 23:07:38 2003 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb: convert RD to RDoc. Thanks William Webber.

View file

@ -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