From: Vincent Pit Date: Mon, 3 Jan 2011 15:01:34 +0000 (+0100) Subject: Require perl 5.8.3 X-Git-Tag: v0.10~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=c8223c2b729cdac4d9b77f634ed31613ce5620bf;hp=569b0505de7c5021759a402e898c1fcaaee2caac Require perl 5.8.3 5.8.2 has a buggy peephole optimizer that may cause test failures. --- diff --git a/Makefile.PL b/Makefile.PL index 68fc792..c8440d1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use 5.008001; +use 5.008003; use strict; use warnings; @@ -86,7 +86,7 @@ WriteMakefile( PL_FILES => {}, @DEFINES, PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.008001, + MIN_PERL_VERSION => 5.008003, META_MERGE => \%META, dist => { PREOP => "pod2text $file > \$(DISTVNAME)/README", diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index ab54c25..3593a2b 100644 --- a/lib/Lexical/Types.pm +++ b/lib/Lexical/Types.pm @@ -1,6 +1,6 @@ package Lexical::Types; -use 5.008001; +use 5.008003; use strict; use warnings; @@ -268,7 +268,7 @@ This is due to a shortcoming in the way perl handles the hints hash, which is ad =head1 DEPENDENCIES -L 5.8.1. +L 5.8.3. A C compiler. This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard.