X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=be74c98e88a02d07a7b93475420121c9d92cf07c;hb=2f665925359d9fba8a49baeccd7ad798f733221d;hp=d89d8f6e16683062dbf49db8c2c3586f55e2c56a;hpb=b9add211357754c5b4e4a122210412fa9ac737d9;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index d89d8f6..be74c98 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,13 @@ all_from 'lib/Mouse.pm'; tests 't/*.t t/*/*.t'; +if ($] < 5.007003) { + requires 'Scalar::Util'; +} + +build_requires 'Test::Exception'; +build_requires 'Sub::Uplevel'; # required by Test::Exception build_requires 'Test::More'; +auto_include; WriteAll; -