load mro.pm under 5.9.5+, since next::method, etc will have to move there
[gitmo/MRO-Compat.git] / Makefile.PL
CommitLineData
4c4e4170 1use inc::Module::Install;
2
cfd77a25 3name 'MRO-Compat';
4all_from 'lib/MRO/Compat.pm';
4c4e4170 5
6build_requires 'Test::More' => '0.47';
7
e9b18837 8if($] < 5.009_005) {
a9edfcb9 9 feature 'XS Speedups', 'Class::C3::XS' => '0.04';
10 requires 'Class::C3' => '0.18';
e9b18837 11}
12
4c4e4170 13auto_install;
14WriteAll;