X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f5391de1f57bfa27c9c19608e9f538620ba18f74;hb=HEAD;hp=eeab590cc875d277902767273530df84071e3a1f;hpb=1c77a9f78df75b594ec37e04075fbdc80b4273d7;p=gitmo%2FMRO-Compat.git diff --git a/Makefile.PL b/Makefile.PL index eeab590..f5391de 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,16 @@ -use inc::Module::Install 0.75; +use inc::Module::Install 1.06; -name 'MRO-Compat'; all_from 'lib/MRO/Compat.pm'; requires 'perl' => 5.006_000; test_requires 'Test::More' => '0.47'; if($] < 5.009_005) { - feature 'XS Speedups', 'Class::C3::XS' => '0.08'; - requires 'Class::C3' => '0.19'; + requires 'Class::C3' => '0.24'; } # Rebuild README for maintainers system("pod2text lib/MRO/Compat.pm >README") if -e 'MANIFEST.SKIP'; auto_provides; -auto_install; WriteAll;