mro compat stuff
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
index bd272a1..397bdc0 100644 (file)
@@ -1,7 +1,11 @@
 package Catalyst::Engine::FastCGI;
 
-use strict;
-use base 'Catalyst::Engine::CGI';
+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 $@;