Date: Fri, 24 Apr 2015 13:23:39 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384638 - head/devel/p5-B-Flags/files Message-ID: <201504241323.t3ODNdXO085037@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Fri Apr 24 13:23:39 2015 New Revision: 384638 URL: https://svnweb.freebsd.org/changeset/ports/384638 Log: Fix will Perl 5.21.11. Sponsored by: Absolight Added: head/devel/p5-B-Flags/files/ head/devel/p5-B-Flags/files/patch-Flags.xs (contents, props changed) Added: head/devel/p5-B-Flags/files/patch-Flags.xs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-B-Flags/files/patch-Flags.xs Fri Apr 24 13:23:39 2015 (r384638) @@ -0,0 +1,16 @@ +--- Flags.xs.orig 2014-12-03 12:04:54 UTC ++++ Flags.xs +@@ -66,8 +66,13 @@ flagspv(o) + if (o->op_folded) + sv_catpv(RETVAL, ",FOLDED"); + #if (PERL_VERSION == 21 && PERL_SUBVERSION > 1) || PERL_VERSION >= 22 ++#if (PERL_VERSION == 21 && PERL_SUBVERSION < 11) + if (o->op_lastsib) + sv_catpv(RETVAL, ",LASTSIB"); ++#else ++ if (o->op_moresib) ++ sv_catpv(RETVAL, ",MORESIB"); ++#endif + #endif + #endif + #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504241323.t3ODNdXO085037>