From 5d07f52389c505446b2821874452ce17113e42c5 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sun, 13 Nov 2005 10:05:58 +0000 Subject: [PATCH] Use the new clouds3d-enable property instead. --- src/Main/options.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 3f519f352..c7aab9619 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -175,8 +175,12 @@ fgSetDefaults () fgSetString("/sim/startup/browser-app", "webrun.bat"); #elif defined(__APPLE__) fgSetString("/sim/startup/browser-app", "open"); +#elif defined(sgi) + fgSetString("/sim/startup/browser-app", "launchWebJumper"); #else - fgSetString("/sim/startup/browser-app", "netscape"); + char *envp = ::getenv( "WEBBROWSER" ); + if (!envp) envp = "netscape"; + fgSetString("/sim/startup/browser-app", envp); #endif fgSetString("/sim/logging/priority", "alert");