summaryrefslogtreecommitdiff
path: root/ext/Compress/Zlib
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Compress/Zlib')
-rw-r--r--ext/Compress/Zlib/Changes4
-rwxr-xr-xext/Compress/Zlib/Makefile.PL16
-rw-r--r--ext/Compress/Zlib/README6
-rw-r--r--ext/Compress/Zlib/lib/Compress/Zlib.pm14
4 files changed, 23 insertions, 17 deletions
diff --git a/ext/Compress/Zlib/Changes b/ext/Compress/Zlib/Changes
index 4a2112275e..73ebd5387a 100644
--- a/ext/Compress/Zlib/Changes
+++ b/ext/Compress/Zlib/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.003 2 January 2007
+
+ * Added explicit version checking
+
2.002 29 December 2006
* Documentation updates.
diff --git a/ext/Compress/Zlib/Makefile.PL b/ext/Compress/Zlib/Makefile.PL
index df93a6cbb7..d2d2e1a14d 100755
--- a/ext/Compress/Zlib/Makefile.PL
+++ b/ext/Compress/Zlib/Makefile.PL
@@ -3,6 +3,8 @@
use strict ;
require 5.004 ;
+$::VERSION = '2.003' ;
+
use private::MakeUtil;
use ExtUtils::MakeMaker 5.16 ;
@@ -21,13 +23,13 @@ WriteMakefile(
(
$ENV{SKIP_FOR_CORE}
? (MAN3PODS => {})
- : (PREREQ_PM => { 'Compress::Raw::Zlib' => 0,
- 'IO::Compress::Base' => 0,
- 'IO::Compress::Base::Common' => 0,
- 'IO::Uncompress::Base' => 0,
- 'IO::Compress::Gzip' => 0,
- 'IO::Compress::Gzip::Constants' => 0,
- 'IO::Uncompress::Gunzip' => 0,
+ : (PREREQ_PM => { 'Compress::Raw::Zlib' => $::VERSION,
+ 'IO::Compress::Base' => $::VERSION,
+ 'IO::Compress::Base::Common' => $::VERSION,
+ 'IO::Uncompress::Base' => $::VERSION,
+ 'IO::Compress::Gzip' => $::VERSION,
+ 'IO::Compress::Gzip::Constants' => $::VERSION,
+ 'IO::Uncompress::Gunzip' => $::VERSION,
'Scalar::Util' => 0,
}
)
diff --git a/ext/Compress/Zlib/README b/ext/Compress/Zlib/README
index e0caaf9c09..263eb7bf94 100644
--- a/ext/Compress/Zlib/README
+++ b/ext/Compress/Zlib/README
@@ -1,12 +1,12 @@
Compress::Zlib
- Version 2.002
+ Version 2.003
- 29th December 2006
+ 2nd January 2007
- Copyright (c) 1995-2006 Paul Marquess. All rights reserved.
+ Copyright (c) 1995-2007 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
diff --git a/ext/Compress/Zlib/lib/Compress/Zlib.pm b/ext/Compress/Zlib/lib/Compress/Zlib.pm
index cb9508b250..e8e9da3b91 100644
--- a/ext/Compress/Zlib/lib/Compress/Zlib.pm
+++ b/ext/Compress/Zlib/lib/Compress/Zlib.pm
@@ -8,17 +8,17 @@ use Carp ;
use IO::Handle ;
use Scalar::Util qw(dualvar);
-use IO::Compress::Base::Common ;
-use Compress::Raw::Zlib;
-use IO::Compress::Gzip;
-use IO::Uncompress::Gunzip;
+use IO::Compress::Base::Common 2.003 ;
+use Compress::Raw::Zlib 2.003 ;
+use IO::Compress::Gzip 2.003 ;
+use IO::Uncompress::Gunzip 2.003 ;
use strict ;
use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.002';
+$VERSION = '2.003';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
@@ -438,7 +438,7 @@ sub inflate
package Compress::Zlib ;
-use IO::Compress::Gzip::Constants;
+use IO::Compress::Gzip::Constants 2.003 ;
sub memGzip($)
{
@@ -1452,7 +1452,7 @@ See the Changes file.
=head1 COPYRIGHT AND LICENSE
-Copyright (c) 1995-2006 Paul Marquess. All rights reserved.
+Copyright (c) 1995-2007 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.