In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e2287ba7db98feeea3aaf9074f670063012f2d0d?hp=8a776697be4d3151d33fc5fefefbc88f290a7c29>
- Log ----------------------------------------------------------------- commit e2287ba7db98feeea3aaf9074f670063012f2d0d Author: Craig A. Berry <[email protected]> Date: Sun Dec 20 10:12:36 2015 -0600 Do not define invlistEQ in the re extension. Because it's already defined in regcomp.c and the VMS build was failing with a linker error (multiply-defined symbol). ----------------------------------------------------------------------- Summary of changes: regcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regcomp.c b/regcomp.c index f11fda1..8474e82 100644 --- a/regcomp.c +++ b/regcomp.c @@ -9389,7 +9389,7 @@ Perl__load_PL_utf8_foldclosures (pTHX) } #endif -#ifdef PERL_ARGS_ASSERT__INVLISTEQ +#if defined(PERL_ARGS_ASSERT__INVLISTEQ) && !defined(PERL_IN_XSUB_RE) bool Perl__invlistEQ(pTHX_ SV* const a, SV* const b, const bool complement_b) { -- Perl5 Master Repository
