Pre-run and disarm the code automodification run by
Rafael Garcia-Suarez [Fri, 10 Jun 2005 13:44:35 +0000 (13:44 +0000)]
Compress::Zlib's Makefile

p4raw-id: //depot/perl@24793

13 files changed:
ext/Compress/Zlib/Makefile.PL
ext/Compress/Zlib/Zlib.pm
ext/Compress/Zlib/examples/filtdef
ext/Compress/Zlib/examples/filtinf
ext/Compress/Zlib/examples/gzcat
ext/Compress/Zlib/examples/gzgrep
ext/Compress/Zlib/examples/gzstream
ext/Compress/Zlib/t/01version.t
ext/Compress/Zlib/t/02zlib.t
ext/Compress/Zlib/t/03examples.t
ext/Compress/Zlib/t/04encoding.t
ext/Compress/Zlib/t/05gzsetp.t
ext/Compress/Zlib/t/06gzdopen.t

index b8c2240..558ce72 100755 (executable)
@@ -351,8 +351,10 @@ sub UpDowngrade
           { return }
     }
 
-    foreach (@files)
-      { doUpDown($our_sub, $warn_sub, $_) }
+    unless ($ENV{PERL_CORE}) {
+      foreach (@files)
+        { doUpDown($our_sub, $warn_sub, $_) }
+    }
 
     warn "Up/Downgrade complete.\n" ;
     exit 0 if $upgrade || $downgrade;
index 2b8777e..0521ee6 100644 (file)
@@ -18,9 +18,9 @@ use Carp ;
 use IO::Handle ;
 
 use strict ;
-local ($^W) = 1; #use warnings ;
-use vars qw($VERSION @ISA @EXPORT $AUTOLOAD);
-use vars qw($deflateDefault $deflateParamsDefault $inflateDefault);
+use warnings ;
+our ($VERSION, @ISA, @EXPORT, $AUTOLOAD);
+our ($deflateDefault, $deflateParamsDefault, $inflateDefault);
 
 $VERSION = "1.34_01" ;
 
@@ -197,7 +197,7 @@ $inflateDefault = {
 sub deflateInit(@)
 {
     my ($got) = ParseParameters($deflateDefault, @_) ;
-    local ($^W) = 0; #no warnings;
+    no warnings;
     croak "deflateInit: Bufsize must be >= 1, you specified $got->{Bufsize}"
         unless $got->{Bufsize} >= 1;
     _deflateInit($got->{Level}, $got->{Method}, $got->{WindowBits}, 
@@ -209,7 +209,7 @@ sub deflateInit(@)
 sub inflateInit(@)
 {
     my ($got) = ParseParameters($inflateDefault, @_) ;
-    local ($^W) = 0; #no warnings;
+    no warnings;
     croak "inflateInit: Bufsize must be >= 1, you specified $got->{Bufsize}"
         unless $got->{Bufsize} >= 1;
     _inflateInit($got->{WindowBits}, $got->{Bufsize}, $got->{Dictionary});
@@ -222,7 +222,7 @@ sub Compress::Zlib::deflateStream::deflateParams
     my ($got) = ParseParameters($deflateParamsDefault, @_) ;
     croak "deflateParams needs Level and/or Strategy"
         unless defined $got->{Level} || defined $got->{Strategy};
-    local ($^W) = 0; #no warnings;
+    no warnings;
     croak "deflateParams: Bufsize must be >= 1, you specified $got->{Bufsize}"
         unless  !defined $got->{Bufsize} || $got->{Bufsize} >= 1;
 
index 5cbc882..57dfeb9 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/local/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index f65ed8c..1df202b 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/local/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index 6c595b8..3bbd297 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/local/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index 26f8939..324d3e6 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/local/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index 22d3d27..cb03a2c 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/local/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index 1a0030a..ea5b6a0 100644 (file)
@@ -1,6 +1,6 @@
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index 995bb52..e4802d1 100644 (file)
@@ -1,7 +1,7 @@
 
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index b32ef4f..b5b41f8 100644 (file)
@@ -1,6 +1,6 @@
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 sub ok
 {
index 6e4ed74..9d66321 100644 (file)
@@ -1,6 +1,6 @@
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 BEGIN 
 {
index 97762e1..9988ac6 100644 (file)
@@ -1,7 +1,7 @@
 
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 
index 919302a..59a0d4f 100644 (file)
@@ -1,7 +1,7 @@
 
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;