Skip to content
Snippets Groups Projects
Commit d3964c26 authored by brinn's avatar brinn
Browse files

change: make automatic library detection also work with Windows server...

change: make automatic library detection also work with Windows server versions and Windows XP Professional x64

SVN: 9155
parent 0e1d521c
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ public class OSUtilities ...@@ -70,7 +70,7 @@ public class OSUtilities
public static String getCompatibleComputerPlatform() public static String getCompatibleComputerPlatform()
{ {
String osName = System.getProperty("os.name"); String osName = System.getProperty("os.name");
if ("Windows XP".equals(osName) || "Windows Vista".equals(osName)) if (osName.startsWith("Windows"))
{ {
osName = "Windows"; osName = "Windows";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment