svn commit: r319676 - in head/lang/tcl86: . files
Chris Rees
crees at FreeBSD.org
Sun Jun 2 15:37:24 UTC 2013
Author: crees
Date: Sun Jun 2 15:37:23 2013
New Revision: 319676
URL: http://svnweb.freebsd.org/changeset/ports/319676
Log:
Increase the regex size limit to 1000, thus fixing libffi test suite.
Submitted by: dim
Obtained from: http://sourceforge.net/tracker/?func=detail&aid=3603557&group_id=10894&atid=110894
Added:
head/lang/tcl86/files/patch-generic-regc_nfa.c (contents, props changed)
Modified:
head/lang/tcl86/Makefile
Modified: head/lang/tcl86/Makefile
==============================================================================
--- head/lang/tcl86/Makefile Sun Jun 2 15:13:14 2013 (r319675)
+++ head/lang/tcl86/Makefile Sun Jun 2 15:37:23 2013 (r319676)
@@ -3,7 +3,7 @@
PORTNAME= tcl
PORTVERSION= 8.6.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= lang
MASTER_SITES= SF/tcl/Tcl/${PORTVERSION} \
${MASTER_SITE_TCLTK}
Added: head/lang/tcl86/files/patch-generic-regc_nfa.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/tcl86/files/patch-generic-regc_nfa.c Sun Jun 2 15:37:23 2013 (r319676)
@@ -0,0 +1,11 @@
+--- ../generic/regc_nfa.c 2013-06-01 17:57:46.483457654 +0100
++++ ../generic/regc_nfa.c 2013-06-01 17:57:59.049271978 +0100
+@@ -759,7 +759,7 @@
+ * Arbitrary depth limit. Needs tuning, but this value is sufficient to
+ * make all normal tests (not reg-33.14) pass.
+ */
+-#define DUPTRAVERSE_MAX_DEPTH 500
++#define DUPTRAVERSE_MAX_DEPTH 1000
+
+ if (depth++ > DUPTRAVERSE_MAX_DEPTH) {
+ NERR(REG_ESPACE);
More information about the svn-ports-head
mailing list