git: 3552a7f75007 - main - devel/flexdock: allow building with any jdk
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 11 Dec 2025 21:10:04 UTC
The branch main has been updated by ronald:
URL: https://cgit.FreeBSD.org/ports/commit/?id=3552a7f75007e910aeb9f03cba29c561e6ea5ed3
commit 3552a7f75007e910aeb9f03cba29c561e6ea5ed3
Author: Ronald Klop <ronald@FreeBSD.org>
AuthorDate: 2025-12-11 21:08:25 +0000
Commit: Ronald Klop <ronald@FreeBSD.org>
CommitDate: 2025-12-11 21:09:51 +0000
devel/flexdock: allow building with any jdk
Tested with openjdk21.
PR: 272855
---
devel/flexdock/files/patch-build.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/devel/flexdock/files/patch-build.xml b/devel/flexdock/files/patch-build.xml
index 9155a121ffdb..34cb0d2df09e 100644
--- a/devel/flexdock/files/patch-build.xml
+++ b/devel/flexdock/files/patch-build.xml
@@ -5,7 +5,7 @@
<target name="compile" depends="init, resources"
description="Compile java sources for the framework, demos, and tests">
- <javac classpathref="javac.classpath" destdir="${bin.dir}" debug="true" source="1.5" target="1.5" includeAntRuntime="no">
-+ <javac classpathref="javac.classpath" destdir="${bin.dir}" debug="true" source="1.6" target="1.6" includeAntRuntime="no">
++ <javac classpathref="javac.classpath" destdir="${bin.dir}" debug="true" includeAntRuntime="no">
<compilerarg value="-Xlint"/>
<src path="${java.src.core}" />
<!-- the next 3 are interdependent -->
@@ -15,8 +15,8 @@
</javac>
- <javac classpathref="javac.classpath.demo" srcdir="${java.src.demo}" destdir="${bin.dir.demo}" debug="true" source="1.5" target="1.5" includeAntRuntime="no"/>
- <javac classpathref="javac.classpath.test" srcdir="${java.src.test}" destdir="${bin.dir.test}" debug="true" source="1.5" target="1.5" includeAntRuntime="no"/>
-+ <javac classpathref="javac.classpath.demo" srcdir="${java.src.demo}" destdir="${bin.dir.demo}" debug="true" source="1.6" target="1.6" includeAntRuntime="no"/>
-+ <javac classpathref="javac.classpath.test" srcdir="${java.src.test}" destdir="${bin.dir.test}" debug="true" source="1.6" target="1.6" includeAntRuntime="no"/>
++ <javac classpathref="javac.classpath.demo" srcdir="${java.src.demo}" destdir="${bin.dir.demo}" debug="true" includeAntRuntime="no"/>
++ <javac classpathref="javac.classpath.test" srcdir="${java.src.test}" destdir="${bin.dir.test}" debug="true" includeAntRuntime="no"/>
</target>