]> source.dussan.org Git - aspectj.git/commitdiff
Support Windows 10 and Windows Server 2016/2019 in installer 32/head
authorAlexander Kriegisch <Alexander@Kriegisch.name>
Thu, 4 Mar 2021 09:43:15 +0000 (16:43 +0700)
committerAlexander Kriegisch <Alexander@Kriegisch.name>
Thu, 4 Mar 2021 09:43:15 +0000 (16:43 +0700)
Those versions were not detected until now, which lead to bogus Windows
batch files forwarding only 9 Ajc parameters to the Java process via
"%1 %2 %3 %4 %5 %6 %7 %8 %9" instead of "%*".

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
build/src/main/java/$installer$/org/aspectj/Main.java

index 2ffc8b8894d24831c3de96cb4fbf94e2bc26047c..f75f28a6e7d0da23e1452b0f99b4cbef73da19d1 100644 (file)
@@ -690,8 +690,10 @@ class InstallContext {
        }
 
        public boolean onWindowsPro() {
-               return getOS().equals("Windows NT") || getOS().equals("Windows 2000") || getOS().equals("Windows XP")
-                               || getOS().equals("Windows Vista") || getOS().equals("Windows 7") || getOS().startsWith("Windows 8");
+               // TODO: Think about a more future-proof solution also checking 'os.version' system property. See also this table:
+               //       https://github.com/openjdk/jdk/blob/9604ee82690f89320614b37bfef4178abc869777/src/java.base/windows/native/libjava/java_props_md.c#L446
+               //       Alternatively, explicitly exclude unsupported versions because those won't change in the future.
+               return getOS().matches("^Windows (NT|2000|XP|Vista|Server|7|8|10).*");
        }
 
        public boolean onMacintosh() {