From: Karen Etheridge Date: Fri, 11 Jul 2014 14:05:54 +0000 (-0700) Subject: drop mention of strict and warnings in prereqs - they are core only since at least 5.6 X-Git-Tag: v0.027~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Simple.git;a=commitdiff_plain;h=777ffe5c5d240bdb878e027051319dfaddead347 drop mention of strict and warnings in prereqs - they are core only since at least 5.6 --- diff --git a/Makefile.PL b/Makefile.PL index 37a5d34..89496f2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -36,7 +36,7 @@ my %WriteMakefileArgs = ( runtime => { requires => { 'Carp' => '0', - 'Encode' => '0', + 'Encode' => '0', # not core in 5.6 'Exporter' => '0', 'File::Glob' => '0', 'HTTP::Body' => '0', @@ -46,15 +46,13 @@ my %WriteMakefileArgs = ( 'MIME::Base64' => '0', 'Moo' => '0.009014', 'Plack' => '0.9968', - 'Scalar::Util' => '0', + 'Scalar::Util' => '0', # not core in 5.6 'Sub::Quote' => '0', 'Syntax::Keyword::Gather' => '1.001', 'URI' => '0', 'base' => '0', 'overload' => '0', - 'strict' => '0', 'strictures' => '1', - 'warnings' => '0', 'warnings::illegalproto' => '0', 'perl' => '5.006', },