|
From: Markus B. <mba...@us...> - 2005-10-13 19:43:38
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/ruby In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12202/ruby Modified Files: eclipseDebug.rb Log Message: replaced localhost with 127.0.0.1 in TCPServer.new due to bug in OSX 10.4 Index: eclipseDebug.rb =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/ruby/eclipseDebug.rb,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** eclipseDebug.rb 9 Oct 2005 21:22:28 -0000 1.16 --- eclipseDebug.rb 13 Oct 2005 19:43:30 -0000 1.17 *************** *** 1151,1155 **** end ! server = TCPServer.new('localhost', ECLIPSE_LISTEN_PORT) puts "ruby #{RUBY_VERSION} debugger listens on port #{ECLIPSE_LISTEN_PORT}" $stdout.flush --- 1151,1156 ---- end ! # use 127.0.0.1 instead of localhost because OSX 10.4 ! server = TCPServer.new('127.0.0.1', ECLIPSE_LISTEN_PORT) puts "ruby #{RUBY_VERSION} debugger listens on port #{ECLIPSE_LISTEN_PORT}" $stdout.flush |