summaryrefslogtreecommitdiff
path: root/lang/perl5.10/files/patch-lastcloseparen
diff options
context:
space:
mode:
authorAnton Berezin <tobez@FreeBSD.org>2003-10-27 19:48:03 +0000
committerAnton Berezin <tobez@FreeBSD.org>2003-10-27 19:48:03 +0000
commit1aee5817e8ee565d8efb60984a85c74ae48d025a (patch)
tree4a40734d22a51c5b390102e6b181374200a171c0 /lang/perl5.10/files/patch-lastcloseparen
parentChange this ports a slave ports. (diff)
Update to 5.8.1.
Also: Make suidperl optional (ENABLE_SUIDPERL knob). Switch to perlmalloc by default, unless threaded perl is built, to improve performance. Modernize pkg-plist (switch to SITE_PERL where possible). Update WWW. Many thanks to foxfair who prepared most of this update.
Notes
Notes: svn path=/head/; revision=92346
Diffstat (limited to 'lang/perl5.10/files/patch-lastcloseparen')
-rw-r--r--lang/perl5.10/files/patch-lastcloseparen31
1 files changed, 0 insertions, 31 deletions
diff --git a/lang/perl5.10/files/patch-lastcloseparen b/lang/perl5.10/files/patch-lastcloseparen
deleted file mode 100644
index 3676fed904de..000000000000
--- a/lang/perl5.10/files/patch-lastcloseparen
+++ /dev/null
@@ -1,31 +0,0 @@
---- pp_hot.c.orig Mon Jul 14 10:20:29 2003
-+++ pp_hot.c Mon Jul 14 10:21:31 2003
-@@ -1406,7 +1406,7 @@ yup: /* Confirmed by INTUIT */
- rx->startp[0] = s - truebase;
- rx->endp[0] = s - truebase + rx->minlen;
- }
-- rx->nparens = rx->lastparen = 0; /* used by @- and @+ */
-+ rx->nparens = rx->lastparen = rx->lastcloseparen = 0; /* used by @-, @+, and $^N */
- LEAVE_SCOPE(oldsave);
- RETPUSHYES;
-
---- sv.c.orig Mon Jul 14 10:21:49 2003
-+++ sv.c Mon Jul 14 10:22:35 2003
-@@ -11474,6 +11474,7 @@ perl_clone_using(PerlInterpreter *proto_
- PL_regstartp = (I32*)NULL;
- PL_regendp = (I32*)NULL;
- PL_reglastparen = (U32*)NULL;
-+ PL_reglastcloseparen = (U32*)NULL;
- PL_regtill = Nullch;
- PL_reg_start_tmp = (char**)NULL;
- PL_reg_start_tmpl = 0;
---- regexec.c.orig Mon Jul 14 10:37:02 2003
-+++ regexec.c Mon Jul 14 10:37:34 2003
-@@ -2107,6 +2107,7 @@ S_regtry(pTHX_ regexp *prog, char *start
- PL_reglastparen = &prog->lastparen;
- PL_reglastcloseparen = &prog->lastcloseparen;
- prog->lastparen = 0;
-+ prog->lastcloseparen = 0;
- PL_regsize = 0;
- DEBUG_r(PL_reg_starttry = startpos);
- if (PL_reg_start_tmpl <= prog->nparens) {