commit | dbf97f235310c20d0158c83daaf4cd3aad6b32c9 | [log] [tgz] |
---|---|---|
author | Richard S. Hall <rickhall@apache.org> | Fri Jun 29 22:17:38 2012 +0000 |
committer | Richard S. Hall <rickhall@apache.org> | Fri Jun 29 22:17:38 2012 +0000 |
tree | d02bb87469dd3bf2c9b28ef89c1a03046eff993b | |
parent | 370ed861621abeea300dde03d5e8191eb02866d7 [diff] |
Add Windows 2008 platform for native libraries. (FELIX-3363) git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1355580 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/util/manifestparser/R4LibraryClause.java b/framework/src/main/java/org/apache/felix/framework/util/manifestparser/R4LibraryClause.java index 87c8310..3dc9fe8 100644 --- a/framework/src/main/java/org/apache/felix/framework/util/manifestparser/R4LibraryClause.java +++ b/framework/src/main/java/org/apache/felix/framework/util/manifestparser/R4LibraryClause.java
@@ -140,6 +140,7 @@ || currentOSName.equals("windowsnt") || currentOSName.equals("windows2000") || currentOSName.equals("windows2003") + || currentOSName.equals("windows2008") || currentOSName.equals("windowsxp") || currentOSName.equals("windowsce") || currentOSName.equals("windowsvista") @@ -378,6 +379,10 @@ { os = "windows2003"; } + else if (value.indexOf("2008") >= 0) + { + os = "windows2008"; + } else if (value.indexOf("xp") >= 0) { os = "windowsxp"; @@ -520,4 +525,4 @@ return Version.emptyVersion.toString(); } } -} \ No newline at end of file +}