From: Rafael Garcia-Suarez Date: Tue, 19 Dec 2006 10:23:29 +0000 (+0000) Subject: Disable strictures in POSIX AUTOLOAD X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aece8dfbef01145d5fc8c74834ddfb4ea154b770;p=p5sagit%2Fp5-mst-13.2.git Disable strictures in POSIX AUTOLOAD p4raw-id: //depot/perl@29591 --- diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm index 4f55519..6ccfa82 100644 --- a/ext/POSIX/POSIX.pm +++ b/ext/POSIX/POSIX.pm @@ -37,6 +37,7 @@ my %NON_CONSTS = (map {($_,1)} WIFEXITED WIFSIGNALED WIFSTOPPED WSTOPSIG WTERMSIG)); sub AUTOLOAD { + no strict; if ($AUTOLOAD =~ /::(_?[a-z])/) { # require AutoLoader; $AutoLoader::AUTOLOAD = $AUTOLOAD;