* OpenSim now performs compatibility checks at startup and warns the user if the Operating System or Platform version they are using is unsupported.

afrisby
Adam Frisby 2007-07-29 07:24:20 +00:00
parent 43507f857b
commit 039d46e8fa
1 changed files with 13 additions and 1 deletions

View File

@ -38,8 +38,20 @@ namespace OpenSim
public static void Main(string[] args)
{
Console.WriteLine("OpenSim " + VersionInfo.Version + "\n");
Console.WriteLine("Starting...\n");
Console.Write("Performing compatibility checks... ");
string supported = "";
if (OpenSim.Framework.Utilities.Util.IsEnvironmentSupported(ref supported))
{
Console.WriteLine(" Environment is compatible.\n");
}
else
{
Console.WriteLine(" Environment is unsupported (" + supported + ")\n");
}
Console.WriteLine("Starting...\n");
bool sandBoxMode = false;
bool startLoginServer = false;
string physicsEngine = "basicphysics";