mro compat stuff
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
index e009dfa..397bdc0 100644 (file)
@@ -1,8 +1,11 @@
 package Catalyst::Engine::FastCGI;
 
+use MRO::Compat;
+use mro 'c3';
 use Moose;
 extends 'Catalyst::Engine::CGI';
 
+# eval { Class::MOP::load_class("FCGI") };
 eval "use FCGI";
 die "Unable to load the FCGI module, you may need to install it:\n$@\n" if $@;