depend on Class::C3 and implement C<use mro "c3"> with caveats
[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) {
9 requires 'Class::C3' => '0.17';
10}
11
4c4e4170 12auto_install;
13WriteAll;