revert XS related things. this is no advantage orz
[gitmo/Mouse.git] / lib / Mouse.pm
index 32ee7ab..22d07eb 100644 (file)
@@ -6,7 +6,6 @@ use 5.006;
 use base 'Exporter';
 
 our $VERSION;
-our $PurePerl;
 
 BEGIN {
     $VERSION  = '0.12';
@@ -16,18 +15,6 @@ BEGIN {
     } else {
         *DEBUG = sub (){ 0 };
     }
-
-    if (! defined $PurePerl && $ENV{MOUSE_PUREPERL} && $ENV{MOUSE_PUREPERL} =~ /^(.+)$/) {
-        $PurePerl = $1;
-    }
-
-    if (! $PurePerl) {
-        local $@;
-        local $^W = 0;
-        require XSLoader;
-        $PurePerl = ! eval{ XSLoader::load(__PACKAGE__, $VERSION); 1 };
-        warn "Failed to load XS mode: $@" if $@; #  && Mouse::DEBUG();
-    }
 }
 
 use Carp 'confess';