Skip to content
Snippets Groups Projects
Commit f6948f5b authored by Emmanuel Bourg's avatar Emmanuel Bourg
Browse files

Fixed the build failure with Java 9 (Closes: #893419)

parent a63f8bd4
No related branches found
No related tags found
No related merge requests found
stylebook (1.0~b3~svn20061109-7) UNRELEASED; urgency=medium
* Team upload.
* Fixed the build failure with Java 9 (Closes: #893419)
* Removed Michael Koch from the uploaders (Closes: #654133)
* Moved the package to Git
* Standards-Version updated to 4.1.3
......
imageio.diff
source-encoding.patch
Description: Set the source encoding to fix the build failures with recent JDKs
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/build.xml
+++ b/build.xml
@@ -71,7 +71,7 @@
If compiling version to run with Xalan-J 2, must not include XalanProcessor in the compile. -->
<target name="compile" depends="prepare">
- <javac srcdir="${build.src}" excludes="org/apache/stylebook/processors/Xalan2Processor.java" destdir="${build.dest}" classpath="${classpath}" debug="${debug}"/>
+ <javac srcdir="${build.src}" excludes="org/apache/stylebook/processors/Xalan2Processor.java" destdir="${build.dest}" classpath="${classpath}" debug="${debug}" encoding="ISO-8859-1"/>
<copy todir="${build.dest}/org/apache/stylebook/data">
<fileset dir="${build.src}/org/apache/stylebook/data"/>
</copy>
@@ -83,7 +83,7 @@
<!--Compile and Package to work with Xalan-J 2 -->
<target name="compile2" depends="prepare">
- <javac srcdir="${src.dir}" excludes="org/apache/stylebook/processors/XalanProcessor.java" destdir="${build.dest}" debug="${debug}">
+ <javac srcdir="${src.dir}" excludes="org/apache/stylebook/processors/XalanProcessor.java" destdir="${build.dest}" debug="${debug}" encoding="ISO-8859-1">
<exclude name="**/org/apache/stylebook/processors/XalanProcessor.java"/>
</javac>
<copy todir="${build.dest}/org/apache/stylebook/data">
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment