From: Dave Rolsky Date: Wed, 22 Oct 2008 21:38:30 +0000 (+0000) Subject: Just require the latest Scalar::Util (which is still about 2 years X-Git-Tag: 0.60~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=23f46d734ec8b8e3224b06d5b2bc33a22311bc2a;p=gitmo%2FMoose.git Just require the latest Scalar::Util (which is still about 2 years old) to avoid the win32 silliness. --- diff --git a/Makefile.PL b/Makefile.PL index a06f803..03f88fe 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,12 +8,9 @@ name 'Moose'; all_from 'lib/Moose.pm'; license 'perl'; -# Scalar::Util 1.18 doesn't work on Windows -my $win32 = !! ( $^O eq 'Win32' or $^O eq 'cygwin' ); - # prereqs requires 'perl' => '5.008'; -requires 'Scalar::Util' => $win32 ? '1.17' : '1.18'; +requires 'Scalar::Util' => '1.19'; requires 'Carp'; requires 'Class::MOP' => '0.68'; requires 'List::MoreUtils';