X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose.git;a=blobdiff_plain;f=Makefile.PL;h=f0756cda07229b5b0638e489e2d9517f086a7b19;hp=6eb0b0f9269accccd90b3b2898c9119d78f1aede;hb=0fc3ab3516f65e07f2af3fa41a8b344e1db2d0ca;hpb=d62bc8fd72a70cec4aa22e794af221451e281b80 diff --git a/Makefile.PL b/Makefile.PL index 6eb0b0f..f0756cd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,26 +1,28 @@ use strict; use warnings; -use Config; -use ExtUtils::MakeMaker; +BEGIN { + eval { require ExtUtils::MakeMaker::Dist::Zilla::Develop }; + if ($@) { + warn + "You need to install ExtUtils::MakeMaker::Dist::Zilla::Develop to run this Makefile.PL\n"; + exit 1; + } + + eval { require Test::Inline }; + if ($@) { + warn "You need to install Test::Inline to run this Makefile.PL\n"; + exit 1; + } + + ExtUtils::MakeMaker::Dist::Zilla::Develop->import(); +} use lib 'inc'; use MMHelper; use MyInline; -warn <<'EOF'; - - ********************************* WARNING ********************************** - - This module uses Dist::Zilla for development. This Makefile.PL will let you - run the tests, but you are encouraged to install Dist::Zilla and the needed - plugins if you intend on doing any serious hacking. - - **************************************************************************** - -EOF - system( $^X, 'author/extract-inline-tests', '--quiet' ); eval MMHelper::my_package_subs(); @@ -28,5 +30,6 @@ eval MMHelper::my_package_subs(); WriteMakefile( NAME => 'Moose', test => { TESTS => 't/*.t t/*/*.t' }, - MMHelper::mm_args('dev'), + CCFLAGS => MMHelper::ccflags_static('dev'), + MMHelper::mm_args(), );