* OpenSim now performs compatibility checks at startup and warns the user if the Operating System or Platform version they are using is unsupported.
parent
43507f857b
commit
039d46e8fa
|
@ -38,8 +38,20 @@ namespace OpenSim
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
Console.WriteLine("OpenSim " + VersionInfo.Version + "\n");
|
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 sandBoxMode = false;
|
||||||
bool startLoginServer = false;
|
bool startLoginServer = false;
|
||||||
string physicsEngine = "basicphysics";
|
string physicsEngine = "basicphysics";
|
||||||
|
|
Loading…
Reference in New Issue