diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2009-06-12 13:08:31 +0200 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2009-06-12 13:08:31 +0200 |
commit | 55ae25dcfe5b5ecc6ac964f070b813004653dc4e (patch) | |
tree | a0925b2f2b91bbcbce9b9b7e4578e822ad9ac79d /ext | |
parent | 937f2ad5ba73ddf03d0fc5ae95784123a6acab55 (diff) | |
download | perl-55ae25dcfe5b5ecc6ac964f070b813004653dc4e.tar.gz |
Upgrade to Devel::PPPort 3.18
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Devel-PPPort/Changes | 8 | ||||
-rw-r--r-- | ext/Devel-PPPort/Makefile.PL | 5 | ||||
-rw-r--r-- | ext/Devel-PPPort/PPPort_pm.PL | 2 | ||||
-rw-r--r-- | ext/Devel-PPPort/mktests.PL | 4 | ||||
-rw-r--r-- | ext/Devel-PPPort/soak | 2 |
5 files changed, 14 insertions, 7 deletions
diff --git a/ext/Devel-PPPort/Changes b/ext/Devel-PPPort/Changes index c98306d8d3..8ad4106407 100644 --- a/ext/Devel-PPPort/Changes +++ b/ext/Devel-PPPort/Changes @@ -1,3 +1,11 @@ +3.18 - 2009-06-12 + + * remove MAN3PODS option from Makefile.PL, which is + no longer needed (thanks to Nicholas Clark for + providing a patch) + * adapt mktests.PL for new layout of ext modules in + the core + 3.17 - 2009-03-15 * rework PTR macros, fixing PTR2ul for 5.6.1 diff --git a/ext/Devel-PPPort/Makefile.PL b/ext/Devel-PPPort/Makefile.PL index e2035b3594..f0023db5f6 100644 --- a/ext/Devel-PPPort/Makefile.PL +++ b/ext/Devel-PPPort/Makefile.PL @@ -4,9 +4,9 @@ # ################################################################################ # -# $Revision: 29 $ +# $Revision: 31 $ # $Author: mhx $ -# $Date: 2009/01/18 14:10:49 +0100 $ +# $Date: 2009/06/12 12:45:44 +0200 $ # ################################################################################ # @@ -68,7 +68,6 @@ sub configure if ($ENV{'PERL_CORE'}) { # Pods will be built by installman. - push @moreopts, MAN3PODS => {}; push @clean, 'PPPort.pm'; } else { diff --git a/ext/Devel-PPPort/PPPort_pm.PL b/ext/Devel-PPPort/PPPort_pm.PL index 6fca8cf26d..83a4739260 100644 --- a/ext/Devel-PPPort/PPPort_pm.PL +++ b/ext/Devel-PPPort/PPPort_pm.PL @@ -535,7 +535,7 @@ package Devel::PPPort; use strict; use vars qw($VERSION $data); -$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.17 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.18 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; sub _init_data { diff --git a/ext/Devel-PPPort/mktests.PL b/ext/Devel-PPPort/mktests.PL index b134d2f1ca..332f9a4d70 100644 --- a/ext/Devel-PPPort/mktests.PL +++ b/ext/Devel-PPPort/mktests.PL @@ -4,9 +4,9 @@ # ################################################################################ # -# $Revision: 30 $ +# $Revision: 32 $ # $Author: mhx $ -# $Date: 2009/01/18 14:10:49 +0100 $ +# $Date: 2009/06/12 12:46:07 +0200 $ # ################################################################################ # diff --git a/ext/Devel-PPPort/soak b/ext/Devel-PPPort/soak index c7e3f483e6..8473dede9c 100644 --- a/ext/Devel-PPPort/soak +++ b/ext/Devel-PPPort/soak @@ -33,7 +33,7 @@ use File::Find; use List::Util qw(max); use Config; -my $VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.17 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +my $VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.18 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; $| = 1; my %OPT = ( |