diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2012-03-08 18:37:54 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2012-03-08 18:37:54 +0000 |
commit | 346415e3c06029d36c899250a77aa33df43cf6fc (patch) | |
tree | 797965d2bfac58a73c0d67dad809d827f98b87fd /lang/perl5.8/files/patch-bug64562 | |
parent | - Include BUILD_DEPENDS as well as RUN_DEPENDS since the module seems to (diff) |
- Remove lang/perl5.8 (12/16/2008 EOL) and lang/perl5.10 (08/23/2009 EOL)
- lang/5.12 (default) is in Maint mode and lang/5.14 is GA right now.
- The final UNcommitted portition of this PR will move the default perl
to lang/perl5.14 but
mail/cyrus-impad2
mail/cyrus-impad22
print/perlftlib
audio/papcl
www/WebMagick
misc/gcstar
math/ploymak
must be fixed or marked BROKEN 1st.
PR: ports/165457
Submitted by: pgollucci (myself)
Approved by: portmgr (linimon)
Exp Run by: linimon
Tested by: make index
Notes
Notes:
svn path=/head/; revision=292976
Diffstat (limited to 'lang/perl5.8/files/patch-bug64562')
-rw-r--r-- | lang/perl5.8/files/patch-bug64562 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lang/perl5.8/files/patch-bug64562 b/lang/perl5.8/files/patch-bug64562 deleted file mode 100644 index d3291d07d243..000000000000 --- a/lang/perl5.8/files/patch-bug64562 +++ /dev/null @@ -1,24 +0,0 @@ -# http://rt.perl.org/rt3/Public/Bug/Display.html?id=64562 -# Adapted from: -# http://perl5.git.perl.org/perl.git/commitdiff/ee6d2783b2d78accfac54397826acf5f6e1715e1?hp=5a8cf367090fb5d83d8e8e0ae381a3525a215928 -diff --git a/op.c b/op.c -index 517f648..89ed522 100644 ---- op.c -+++ op.c -@@ -6166,9 +6166,13 @@ Perl_newFORM(pTHX_ I32 floor, OP *o, OP *block) - const line_t oldline = CopLINE(PL_curcop); - if (PL_copline != NOLINE) - CopLINE_set(PL_curcop, PL_copline); -- Perl_warner(aTHX_ packWARN(WARN_REDEFINE), -- o ? "Format %"SVf" redefined" -- : "Format STDOUT redefined", (void*)cSVOPo->op_sv); -+ if (o) { -+ Perl_warner(aTHX_ packWARN(WARN_REDEFINE), -+ "Format %"SVf" redefined", (void*)cSVOPo->op_sv); -+ } else { -+ Perl_warner(aTHX_ packWARN(WARN_REDEFINE), -+ "Format STDOUT redefined"); -+ } - CopLINE_set(PL_curcop, oldline); - } - SvREFCNT_dec(cv); |