Upgrade to IO::Zlib 1.10
Rafael Garcia-Suarez [Wed, 16 Sep 2009 09:34:17 +0000 (11:34 +0200)]
Porting/Maintainers.pl
ext/IO-Zlib/lib/IO/Zlib.pm

index 92a379c..3c1a84a 100755 (executable)
@@ -803,7 +803,7 @@ use File::Glob qw(:case);
     'IO::Zlib' =>
        {
        'MAINTAINER'    => 'tomhughes',
-       'DISTRIBUTION'  => 'TOMHUGHES/IO-Zlib-1.09.tar.gz',
+       'DISTRIBUTION'  => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
        'FILES'         => q[ext/IO-Zlib],
   # Hmmm is this following bit needed now? CW
        'MAP'           => { 'Zlib.pm' => 'lib/IO/Zlib.pm',
index 3dcce7e..55534b4 100644 (file)
@@ -6,7 +6,7 @@
 
 package IO::Zlib;
 
-$VERSION = "1.09";
+$VERSION = "1.10";
 
 =head1 NAME
 
@@ -300,7 +300,7 @@ sub has_Compress_Zlib {
 
 BEGIN {
     eval { require Compress::Zlib };
-    $has_Compress_Zlib = $@ ? 0 : 1;
+    $has_Compress_Zlib = $@ || $Compress::Zlib::VERSION < 2.000 ? 0 : 1;
 }
 
 use Symbol;