From 039d46e8faf5c34d0082534304590643618b836c Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Sun, 29 Jul 2007 07:24:20 +0000 Subject: * OpenSim now performs compatibility checks at startup and warns the user if the Operating System or Platform version they are using is unsupported. --- OpenSim/Region/Application/Application.cs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index ff261d0..f16cad4 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs @@ -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"; -- cgit v1.1