Add first XS implementation
[gitmo/Mouse.git] / Makefile.PL
index 1222823..e6a0c67 100755 (executable)
@@ -22,12 +22,12 @@ include 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wr
 
 recommends 'MRO::Compat' if $] < 5.010;
 
-my $use_xs;\r
-\r
-for (@ARGV) {\r
-    /^--pp$/ and $use_xs = 0;\r
-    /^--xs$/ and $use_xs = 1;\r
-}\r
+my $use_xs;
+
+for (@ARGV) {
+    /^--pp$/ and $use_xs = 0;
+    /^--xs$/ and $use_xs = 1;
+}
 
 if(!defined $use_xs){
     configure_requires 'ExtUtils::CBuilder';