summarylogtreecommitdiffstats
path: root/jdk23.patch
blob: 89a9e43c23c899ec11171821cd494db9e176d29e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
diff -ur LightZone-5.0.0beta2/lightcrafts/build.xml LightZone-5.0.0beta2.new/lightcrafts/build.xml
--- LightZone-5.0.0beta2/lightcrafts/build.xml	2023-09-25 21:58:06.000000000 +0900
+++ LightZone-5.0.0beta2.new/lightcrafts/build.xml	2024-10-15 22:25:23.911441417 +0900
@@ -98,7 +98,9 @@
     <mkdir dir="build"/>
     <mkdir dir="javah"/>
     <javac srcdir="src" destdir="build" includeantruntime="false" debug="true"
-      release="17" nativeheaderdir="javah" classpathref="compile.classpath"/>
+      release="17" nativeheaderdir="javah" classpathref="compile.classpath">
+      <compilerarg value="-proc:full" />
+    </javac>
   </target>
 
   <target name="coprocesses">
diff -ur LightZone-5.0.0beta2/linux/build.xml LightZone-5.0.0beta2.new/linux/build.xml
--- LightZone-5.0.0beta2/linux/build.xml	2023-09-25 21:58:06.000000000 +0900
+++ LightZone-5.0.0beta2.new/linux/build.xml	2024-10-15 22:26:24.671069380 +0900
@@ -48,6 +48,7 @@
     <javac destdir="build" includeantruntime="false" debug="true"
            release="17" nativeheaderdir="javah">
       <src path="src"/>
+      <compilerarg value="-proc:full" />
       <classpath>
         <fileset dir="${common-dir}/products">
           <include name="*.jar"/>
diff -ur LightZone-5.0.0beta2/macosx/build.xml LightZone-5.0.0beta2.new/macosx/build.xml
--- LightZone-5.0.0beta2/macosx/build.xml	2023-09-25 21:58:06.000000000 +0900
+++ LightZone-5.0.0beta2.new/macosx/build.xml	2024-10-15 22:26:52.200907594 +0900
@@ -43,7 +43,7 @@
     <javac destdir="build" includeantruntime="false" debug="true"
            release="17" nativeheaderdir="javah">
       <src path="src"/>
-      <compilerarg value="-XDignore.symbol.file"/>
+      <compilerarg value="-XDignore.symbol.file -proc:full"/>
       <classpath>
         <fileset dir="${common-dir}/products">
           <include name="*.jar"/>
diff -ur LightZone-5.0.0beta2/windows/build.xml LightZone-5.0.0beta2.new/windows/build.xml
--- LightZone-5.0.0beta2/windows/build.xml	2023-09-25 21:58:06.000000000 +0900
+++ LightZone-5.0.0beta2.new/windows/build.xml	2024-10-15 22:27:11.174131255 +0900
@@ -62,6 +62,7 @@
     <javac destdir="build" debug="true"
            release="17" nativeheaderdir="javah">
       <src path="src"/>
+      <compilerarg value="-proc:full" />
       <classpath>
         <fileset dir="${common-dir}/products">
           <include name="*.jar"/>