mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
* OpenSim now performs compatibility checks at startup and warns the user if the Operating System or Platform version they are using is unsupported.
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user