Change a message from Makefile.PL
[gitmo/Mouse.git] / Makefile.PL
CommitLineData
08f7a8db 1use strict;
2use warnings;
c3398f5b 3use inc::Module::Install;
4
3f9d4c2b 5system($^X, 'author/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0
6 or warn "Cannot generate Mouse::Tiny: $!";
7
c3398f5b 8name 'Mouse';
9all_from 'lib/Mouse.pm';
10
b9add211 11tests 't/*.t t/*/*.t';
12
ec53d678 13# Scalar::Util < 1.14 has a bug.
14# > Fixed looks_like_number(undef) to return false for perl >= 5.009002
15requires 'Scalar::Util' => 1.14;
272a1930 16
4dd800c6 17configure_requires 'ExtUtils::CBuilder';
18
eb88905f 19test_requires 'Test::More' => 0.88;
20test_requires 'Test::Exception' => 0.27;
f1c70cbe 21# test_requires 'Test::Output' => 0.16; # too many dependencies!
22
4dd800c6 23
c6cb4ba0 24include_deps 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wrong)
c3398f5b 25
179ac6cc 26recommends 'MRO::Compat' if $] < 5.010;
27
df6dd016 28my $use_xs;
29
30for (@ARGV) {
31 /^--pp$/ and $use_xs = 0;
32 /^--xs$/ and $use_xs = 1;
33}
0e81c55d 34
3ea28db6 35if($] < 5.008_001){
36 $use_xs = 0;
37}
38
0e81c55d 39if(!defined $use_xs){
c6cb4ba0 40 $use_xs = eval {
41 require ExtUtils::CBuilder;
42 ExtUtils::CBuilder->new(quiet => 1)->have_compiler();
43 };
0e81c55d 44}
45
46if($use_xs){
7b92a82b 47 print "Mouse configured with XS.\n",
48 "You can try --pp option to configure it with Pure Perl.\n";
49 ;
50
0e81c55d 51 require Module::Install::XSUtil;
bb543d7f 52 Module::Install::XSUtil->VERSION(0.15); # for co-developpers
53
0e81c55d 54 use_ppport(3.19);
55 cc_warnings();
56 cc_src_paths('xs-src');
0e81c55d 57}
58else{
7b92a82b 59 print "Mouse configured with Pure Perl.\n";
0e81c55d 60}
61
83eab7b3 62if (author_context()) {
bf9f3f91 63 local @INC = ('lib', @INC);
121acb8a 64 require 'lib/Mouse/Spec.pm';
65 my $require_version = Mouse::Spec->MooseVersion;
bf9f3f91 66
67 if (eval{ require Moose; Moose->VERSION($require_version) }) {
314fe304 68 if (eval 'use Module::Install::AuthorTests; 1') {
32cf1353 69 do 'author/create-moose-compatibility-tests.pl';
314fe304 70 recursive_author_tests('xt');
71 } else {
72 print "you don't have a M::I::AuthorTests.\n";
73 }
74 } else {
bf9f3f91 75 print "you don't have Moose $require_version. skipping moose compatibility test\n";
314fe304 76 }
4358792d 77
78 if($use_xs){
79 # repeat testing
80 # see also ExtUtils::MM_Any::test_via_harness()
81 my $test_via_harness = q{$(FULLPERLRUN) -MExtUtils::Command::MM -e}
82 .q{ "do 'author/force-pp.pl'; test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')"}
83 .q{ $(TEST_FILES)} . "\n";
84
85 postamble qq{test_dynamic :: test_pp\n\n}
86 . qq{test_pp :: pure_all\n}
87 . qq{\t} . $test_via_harness;
88 }
314fe304 89}
90
28b86abc 91clean_files 'lib/Mouse/Tiny.pm $(O_FILES)';
02cf53bb 92
eb88905f 93WriteAll check_nmake => 0;