diff options
author | Adam Frisby | 2007-08-01 18:16:01 +0000 |
---|---|---|
committer | Adam Frisby | 2007-08-01 18:16:01 +0000 |
commit | 948da1d6b81f72dc167e290ba8bee82d42b1f8b0 (patch) | |
tree | 8a78e8cddb7cdf0f41001e20d0d86faf82800bfa /OpenSim/Framework | |
parent | few small changes. (diff) | |
download | opensim-SC_OLD-948da1d6b81f72dc167e290ba8bee82d42b1f8b0.zip opensim-SC_OLD-948da1d6b81f72dc167e290ba8bee82d42b1f8b0.tar.gz opensim-SC_OLD-948da1d6b81f72dc167e290ba8bee82d42b1f8b0.tar.bz2 opensim-SC_OLD-948da1d6b81f72dc167e290ba8bee82d42b1f8b0.tar.xz |
* Workaround for Mono not correctly implementing the OperatingSystemVersion class.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/General/Util.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Framework/General/Util.cs b/OpenSim/Framework/General/Util.cs index 9e687ba..b9f8e9c 100644 --- a/OpenSim/Framework/General/Util.cs +++ b/OpenSim/Framework/General/Util.cs | |||
@@ -108,8 +108,7 @@ namespace OpenSim.Framework.Utilities | |||
108 | 108 | ||
109 | // Windows 2000 / Pre-SP2 XP | 109 | // Windows 2000 / Pre-SP2 XP |
110 | if (System.Environment.OSVersion.Version.Major == 5 && ( | 110 | if (System.Environment.OSVersion.Version.Major == 5 && ( |
111 | System.Environment.OSVersion.Version.Minor == 0 || | 111 | System.Environment.OSVersion.Version.Minor == 0)) |
112 | System.Environment.OSVersion.ServicePack == "Service Pack 1")) | ||
113 | { | 112 | { |
114 | reason = "Please update to Windows XP Service Pack 2 or Server2003"; | 113 | reason = "Please update to Windows XP Service Pack 2 or Server2003"; |
115 | return false; | 114 | return false; |