start using Class::C3, may need to add a reinitalize bit later, not sure
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
index e009dfa..41da9b9 100644 (file)
@@ -1,8 +1,10 @@
 package Catalyst::Engine::FastCGI;
 
+use Class::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 $@;