1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Fix infinite recursion calls
Author: Simon Pepping <spepping@leverkruid.eu>
Bug-Debian: https://bugs.debian.org/805472
Origin: upstream, https://issues.apache.org/jira/browse/FOP-2569?focusedCommentId=15146508&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15146508
Bug: https://issues.apache.org/jira/browse/FOP-2569
Reviewed-By: Mathieu Malaterre <malat@debian.org>
Index: fop/fop/build.xml
===================================================================
--- fop.orig/fop/build.xml
+++ fop/fop/build.xml
@@ -208,7 +208,7 @@ list of possible build targets.
<property name="lib.dir" value="${basedir}/lib"/>
<property name="user.hyph.dir" value="${basedir}/hyph"/>
<property name="unidata.dir" value="${basedir}/UNIDATA"/>
- <property name="hyph.stacksize" value="512k"/>
+ <property name="hyph.stacksize" value="1M"/>
<property name="test.dir" value="${basedir}/test"/>
<property name="test.java.dir" value="${src.dir}/test/java"/>
<property name="test.resources.dir" value="${src.dir}/test/resources"/>
|