In perl.git, the branch maint-5.10 has been updated <http://perl5.git.perl.org/perl.git/commitdiff/84878b9b68e0b2febdcbd6c45be9a0b04e47fbd6?hp=48ae1f6e140871497ec9438fc2417545b518c8ef>
- Log ----------------------------------------------------------------- commit 84878b9b68e0b2febdcbd6c45be9a0b04e47fbd6 Author: David Mitchell <[email protected]> Date: Sat Aug 22 20:54:19 2009 +0100 link in perldelta to INSTALL doesn't get indexed correctly on CPAN, so don't bother. (Spotted by Tom Hukins) M pod/perl5101delta.pod commit 52adc852cf281e94718e48b98ad6f8ab856cc262 Author: Vincent Pit <[email protected]> Date: Thu Aug 20 10:26:59 2009 +0200 Teach perlivp about the new stucture of the IO::Compress module suite This fixes [perl #68682] : 5.10.1 ( RC1 and RC2 ) perlivp fails IO/Compress (cherry picked from commit e7598a06d704c8e12489be3a9098367ae55f5a89) M utils/perlivp.PL ----------------------------------------------------------------------- Summary of changes: pod/perl5101delta.pod | 2 +- utils/perlivp.PL | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pod/perl5101delta.pod b/pod/perl5101delta.pod index cef1408..4644984 100644 --- a/pod/perl5101delta.pod +++ b/pod/perl5101delta.pod @@ -227,7 +227,7 @@ again sequentially and see if the failures go away. =head2 DTrace support -Some support for DTrace has been added. See L<INSTALL/"DTrace support">. +Some support for DTrace has been added. See "DTrace support" in F<INSTALL>. =head2 Support for C<configure_requires> in CPAN module metadata diff --git a/utils/perlivp.PL b/utils/perlivp.PL index a862cee..762b4b3 100644 --- a/utils/perlivp.PL +++ b/utils/perlivp.PL @@ -208,12 +208,12 @@ if (defined($Config{'extensions'})) { next if ($_ eq 'threads'); next if ($_ eq 'threads/shared'); } - # that's a distribution name, not a module name - next if /^IO_Compress_(?:Zlib|Base)$/; + # that's a distribution name, not a module name + next if $_ eq 'IO/Compress'; next if $_ eq 'Devel/DProf'; - # test modules - next if $_ eq 'XS/APItest'; - next if $_ eq 'XS/Typemap'; + # test modules + next if $_ eq 'XS/APItest'; + next if $_ eq 'XS/Typemap'; # VMS$ perl -e "eval ""require \""Devel/DProf.pm\"";"" print $@" # \NT> perl -e "eval \"require 'Devel/DProf.pm'\"; print $@" # DProf: run perl with -d to use DProf. -- Perl5 Master Repository
