X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=5b493d20bbe3eb3b197b9cb0d38c496c89acd5d1;hb=9f775126bf5575a72f493da091383e8206b9d56b;hp=7aaeaa6d08d9bb755be38f7a231e63d6b7046d22;hpb=c1fdb4609f77e41f9d0a8ff436adb6b97d26724e;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 7aaeaa6..5b493d2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -61,6 +61,7 @@ my $runtime_requires = { 'Context::Preserve' => '0.01', 'Try::Tiny' => '0.04', 'namespace::clean' => '0.14', + 'Math::Base36' => '0.07', }; # this is so we can order requires alphabetically @@ -171,10 +172,12 @@ eval { recursive_author_tests (qw/xt/); 1; } || do { - my $err = $@; - eval { require Module::Install::AuthorTests } - || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL:\n\n$@\n"; - die $@; + unless ($args->{skip_author_deps}) { + my $err = $@; + eval { require Module::Install::AuthorTests } + || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL:\n\n$@\n"; + die $@; + } };