Boris Zentner wrote:
# 00_load.t
BEGIN { eval { require Apache2 }; $| = 1; $^W = 0; print "1..1\n"; }
Apache2 doesn't exist in mod_perl RC5 and higher, you probably just want to eval mod_perl2.

END {print "not ok 1\n" unless $loaded;}
use mod_perl2;
use MyApp;
$loaded = 1;
print "ok 1\n";

and that segfaults. I removed the test for now, but thats not my preferred solution.

--
Boris



--
END
------------------------------------------------------------
    What doesn't kill us can only make us stronger.
                Nothing is impossible.
                                
Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/
Senior Developer / Liquidity Services, Inc.
  http://www.liquidityservicesinc.com
       http://www.liquidation.com
       http://www.uksurplus.com
       http://www.govliquidation.com
       http://www.gowholesale.com

Reply via email to