<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/b7185d5deef3da98f25e034939e2d9958ae57d9c">https://github.com/macports/macports-ports/commit/b7185d5deef3da98f25e034939e2d9958ae57d9c</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new b7185d5 itext: Fix build failures due to encoding mismatch
</span>b7185d5 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit b7185d5deef3da98f25e034939e2d9958ae57d9c
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sun Jun 3 19:13:38 2018 -0500
<span style='display:block; white-space:pre;color:#404040;'> itext: Fix build failures due to encoding mismatch
</span>---
java/itext/files/build.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/java/itext/files/build.xml b/java/itext/files/build.xml
</span><span style='display:block; white-space:pre;color:#808080;'>index b221dd4..e78400d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/java/itext/files/build.xml
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/java/itext/files/build.xml
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -165,7 +165,7 @@
</span>
<target name="compile" depends="properties" description="--> compiles the core iText code">
<mkdir dir="${itext.classes}" />
<span style='display:block; white-space:pre;background:#ffe0e0;'>- <javac srcdir="${itext.src}" destdir="${itext.classes}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ <javac srcdir="${itext.src}" destdir="${itext.classes}" encoding="cp1252"
</span> excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java">
<classpath refid="classpath" />
</javac>
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -174,7 +174,7 @@
</span> <target name="compileWithXML" depends="properties" description="--> compiles iText completely">
<mkdir dir="${itext.classes}" />
<echo>Your path to j2ee.jar: ${j2ee.jar}</echo>
<span style='display:block; white-space:pre;background:#ffe0e0;'>- <javac srcdir="${itext.src}" destdir="${itext.classes}">
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ <javac srcdir="${itext.src}" destdir="${itext.classes}" encoding="cp1252">
</span> <classpath refid="classpath" />
</javac>
</target>
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -278,7 +278,7 @@
</span> <echo>They will not compile without a servlet library.</echo>
<echo>Examples Chap0611.java and Chap0612.java require JAI.</echo>
<echo>They will not compile without this extra library.</echo>
<span style='display:block; white-space:pre;background:#ffe0e0;'>- <javac srcdir="${itext.examples}" destdir="${itext.examples}" verbose="false" deprecation="false" excludes="Chap0105.java, OutSimplePDF.java, Calendar.java, Month.java, Chap0611.java, Chap0612.java" >
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ <javac srcdir="${itext.examples}" destdir="${itext.examples}" encoding="cp1252" verbose="false" deprecation="false" excludes="Chap0105.java, OutSimplePDF.java, Calendar.java, Month.java, Chap0611.java, Chap0612.java" >
</span> <classpath refid="classpath" />
</javac>
<java fork="yes" dir="${itext.examples}" classname="Chap0101">
</pre><pre style='margin:0'>
</pre>