--- AnyEvent/lib/AnyEvent.pm 2010/11/23 04:45:59 1.338 +++ AnyEvent/lib/AnyEvent.pm 2010/12/03 18:39:06 1.340 @@ -1309,7 +1309,11 @@ if defined &{"$MODEL\::$_"}; } - require AnyEvent::Strict if $ENV{PERL_ANYEVENT_STRICT}; + if ($ENV{PERL_ANYEVENT_STRICT}) { + eval { require AnyEvent::Strict }; + warn "AnyEvent: cannot load AnyEvent::Strict: $@" + if $@ && $VERBOSE; + } (shift @post_detect)->() while @post_detect;