diff options
author | Zefram <zefram@fysh.org> | 2017-07-20 00:29:19 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2017-07-20 00:29:19 +0100 |
commit | af94b3aceca5e13699699197deb87e197a62e3f8 (patch) | |
tree | 004e6e017cb80832d0d27ec0712a33293a00bfef /dist | |
parent | 89e2d2f33c90af3dbbe7745b80ee60030264b01c (diff) | |
download | perl-af94b3aceca5e13699699197deb87e197a62e3f8.tar.gz |
correct declared min Perl version for Time-HiRes
Version 1.9727_03 of Time-HiRes introduced into Makefile.PL a declaration
of the minimum required Perl version, but got it wrong. It declared a
minimum of 5.8, but the module itself only demands 5.6, and it actually
works at least as far back as 5.6.1. Change the declared minimum to 5.6.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Time-HiRes/Changes | 4 | ||||
-rw-r--r-- | dist/Time-HiRes/HiRes.pm | 2 | ||||
-rw-r--r-- | dist/Time-HiRes/Makefile.PL | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/dist/Time-HiRes/Changes b/dist/Time-HiRes/Changes index 0084af6c84..b0dbed1460 100644 --- a/dist/Time-HiRes/Changes +++ b/dist/Time-HiRes/Changes @@ -1,5 +1,9 @@ Revision history for the Perl extension Time::HiRes. +1.9743 + - correct declared minimum Perl version (should be 5.6, was declared + as 5.8 since 1.9727_03) + 1.9742 [2017-04-16] - prefer 3-argument open: blead 1ae6ead9 - fix dist/Time-HiRes/t/*.t that assumed '.' in @INC: blead 465db51d diff --git a/dist/Time-HiRes/HiRes.pm b/dist/Time-HiRes/HiRes.pm index 386d30d935..fbdc2b4aca 100644 --- a/dist/Time-HiRes/HiRes.pm +++ b/dist/Time-HiRes/HiRes.pm @@ -28,7 +28,7 @@ our @EXPORT_OK = qw (usleep sleep ualarm alarm gettimeofday time tv_interval stat lstat utime ); -our $VERSION = '1.9742'; +our $VERSION = '1.9743'; our $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/dist/Time-HiRes/Makefile.PL b/dist/Time-HiRes/Makefile.PL index ca4d4dc420..08758b9e4a 100644 --- a/dist/Time-HiRes/Makefile.PL +++ b/dist/Time-HiRes/Makefile.PL @@ -936,7 +936,7 @@ sub doMakefile { } if ($ExtUtils::MakeMaker::VERSION >= 6.48) { - push @makefileopts, (MIN_PERL_VERSION => '5.008',); + push @makefileopts, (MIN_PERL_VERSION => '5.006',); } if ($ExtUtils::MakeMaker::VERSION >= 6.31) { |