aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-08-16 11:57:48 +0200
committerSven Gothel <[email protected]>2019-08-16 11:57:48 +0200
commit7f350097c4ac502982f7e6961181d01304bc5de9 (patch)
tree1be42bbd7748b5762d2f50e1f98327a4c430239e /make/build.xml
parente44b9364353a6173598eb98d276795d77cc4456c (diff)
parent5f9c1435ab06c7b620befa8677fc23080dac0ce2 (diff)
Merge branch 'java11'
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/make/build.xml b/make/build.xml
index 3fa7c3c..3d247f3 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -54,7 +54,8 @@
<!-- property name="javadoc.link" value="http://java.sun.com/j2se/1.4.2/docs/api/" /-->
<!-- property name="javadoc.link" value="http://download.oracle.com/javase/1.5.0/docs/api/" /-->
- <property name="javadoc.link" value="http://docs.oracle.com/javase/6/docs/api/" />
+ <!-- property name="javadoc.link" value="http://docs.oracle.com/javase/6/docs/api/" /-->
+ <property name="javadoc.link" value="https://docs.oracle.com/javase/8/docs/api/" />
<!-- The source and build directories. -->
<property name="project.root" value=".." />
@@ -795,7 +796,7 @@
<!-- Compile gluegen (compile time).
- Uses host.rt.jar, since we require 'com.sun.tools.doclets.Taglet',
+ Uses target.rt.jar, since we require 'com.sun.tools.doclets.Taglet',
w/o it breaks build on OSX w/ Java6 compiler.
Surprisingly it works on other platforms, which seems to pick classes
outside of the 'bootclasspath'.
@@ -807,7 +808,7 @@
encoding="UTF-8"
source="${target.sourcelevel}"
target="${target.targetlevel}"
- bootclasspath="${host.rt.jar}"
+ bootclasspath="${target.rt.jar}"
debug="${javacdebug}" debuglevel="${javacdebuglevel}">
<src path="${src.jcpp}" />
<src path="${src.java}" />