From: Vincent Pit Date: Tue, 18 May 2010 21:21:50 +0000 (+0200) Subject: Require perl 5.8.1 X-Git-Tag: rt57699~1 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=dd6141a1ff00e5e62c4ed26899aeecb1b9d7d019 Require perl 5.8.1 5.8.0 seems to cause a lot of "Modification of a a read-only value" errors. --- diff --git a/Makefile.PL b/Makefile.PL index 39749fc..1f7e5c8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use 5.008; +use 5.008001; use strict; use warnings; @@ -56,7 +56,7 @@ WriteMakefile( PL_FILES => {}, @DEFINES, PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.008, + MIN_PERL_VERSION => 5.008001, META_MERGE => \%META, dist => { PREOP => "pod2text $file > \$(DISTVNAME)/README", diff --git a/lib/indirect.pm b/lib/indirect.pm index 304e70a..b49c702 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -1,6 +1,6 @@ package indirect; -use 5.008; +use 5.008001; use strict; use warnings; @@ -191,7 +191,7 @@ Hence C will be caught. =head1 DEPENDENCIES -L 5.8. +L 5.8.1. L (standard since perl 5.006).