Add first XS implementation
[gitmo/Mouse.git] / Makefile.PL
index ab6479f..e6a0c67 100755 (executable)
@@ -2,6 +2,9 @@ use strict;
 use warnings;
 use inc::Module::Install;
 
+system($^X, 'author/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0
+    or warn "Cannot generate Mouse::Tiny: $!";
+
 name     'Mouse';
 all_from 'lib/Mouse.pm';
 
@@ -19,6 +22,31 @@ include 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wr
 
 recommends 'MRO::Compat' if $] < 5.010;
 
+my $use_xs;
+
+for (@ARGV) {
+    /^--pp$/ and $use_xs = 0;
+    /^--xs$/ and $use_xs = 1;
+}
+
+if(!defined $use_xs){
+    configure_requires 'ExtUtils::CBuilder';
+    require ExtUtils::CBuilder;
+    $use_xs = ExtUtils::CBuilder->new(quiet => 1)->have_compiler();
+}
+
+if($use_xs){
+    require Module::Install::XSUtil;
+    use_ppport(3.19);
+    cc_warnings();
+    cc_src_paths('xs-src');
+
+    print "Mouse configured in XS (--xs)\n";
+}
+else{
+    print "Mouse configured in Pure Perl (--pp)\n";
+}
+
 if ($Module::Install::AUTHOR) {
     local @INC = ('lib', @INC);
     require 'lib/Mouse/Spec.pm';
@@ -34,9 +62,10 @@ if ($Module::Install::AUTHOR) {
     } else {
         print "you don't have Moose $require_version. skipping moose compatibility test\n";
     }
-    system("author/generate-mouse-tiny.pl");
 }
 
+clean_files 'lib/Mouse/Tiny.pm';
+
 WriteAll check_nmake => 0;
 
 sub create_moose_compatibility_test {
@@ -51,9 +80,10 @@ sub create_moose_compatibility_test {
     # some test does not pass... currently skip it.
     my %SKIP_TEST = (
         '016-trigger.t'    => "trigger's argument is incompatble :(",
-        '010-isa-or.t'     => "Mouse has a [BUG]",
+        '810-isa-or.t'     => "Mouse has a [BUG]",
 
         '052-undefined-type-in-union.t' => "Mouse accepts undefined type as a member of union types",
+        '054-anon-leak.t'     => 'Moose has memory leaks',
 
         '600-tiny-tiny.t'     => "Moose doesn't support ::Tiny",
         '601-tiny-mouse.t'    => "Moose doesn't support ::Tiny",
@@ -71,7 +101,8 @@ sub create_moose_compatibility_test {
 
                 return if /failing/; # skip tests in failing/ directories which  are Moose specific
 
-                return if /100_with_moose/; # tests with Moose
+                return if /with_moose/; # tests with Moose
+                return if /100_bugs/;   # some tests require Mouse specific files
                 return if /deprecated/;
 
                 my $basename = File::Basename::basename($_);