summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-11-06 22:24:49 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-11-06 23:49:03 +0000
commit949ade47e40a4ff900e138fcde5613302e9bdaed (patch)
treec5b40c2f8ad0c29dd6babf4e514731688bdf1acd /cpan
parentd88bd77ad0e19d4e404b627f2a3b7c8b3a160de0 (diff)
downloadperl-949ade47e40a4ff900e138fcde5613302e9bdaed.tar.gz
Update Compress-Raw-Zlib to CPAN version 2.040
[DELTA] 2.040 28 October 2011 * No Changes 2.039 28 October 2011 * croak if attempt to freeze/thaw compression object [RT #69985]
Diffstat (limited to 'cpan')
-rw-r--r--cpan/Compress-Raw-Zlib/Changes9
-rw-r--r--cpan/Compress-Raw-Zlib/README6
-rw-r--r--cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm27
3 files changed, 38 insertions, 4 deletions
diff --git a/cpan/Compress-Raw-Zlib/Changes b/cpan/Compress-Raw-Zlib/Changes
index 566b064905..843b2a6422 100644
--- a/cpan/Compress-Raw-Zlib/Changes
+++ b/cpan/Compress-Raw-Zlib/Changes
@@ -1,6 +1,15 @@
CHANGES
-------
+ 2.040 28 October 2011
+
+ * No Changes
+
+ 2.039 28 October 2011
+
+ * croak if attempt to freeze/thaw compression object
+ [RT #69985]
+
2.037 22 June 2011
* No Changes
diff --git a/cpan/Compress-Raw-Zlib/README b/cpan/Compress-Raw-Zlib/README
index db2043cc5f..34f21991d6 100644
--- a/cpan/Compress-Raw-Zlib/README
+++ b/cpan/Compress-Raw-Zlib/README
@@ -1,9 +1,9 @@
Compress-Raw-Zlib
- Version 2.037
+ Version 2.040
- 22nd June 2011
+ 28th october 2011
Copyright (c) 2005-2011 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
@@ -355,7 +355,7 @@ To help me help you, I need all of the following information:
If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm
for a line like this:
- $VERSION = "2.037" ;
+ $VERSION = "2.040" ;
c. The version of zlib you have used.
If you have successfully installed Compress-Raw-Zlib, this one-liner
diff --git a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
index 759254523f..5477bce38e 100644
--- a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
+++ b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
@@ -13,7 +13,7 @@ use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.037';
+$VERSION = '2.040';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
@@ -383,6 +383,19 @@ sub Compress::Raw::Zlib::Deflate::new
}
+sub Compress::Raw::Zlib::deflateStream::STORABLE_freeze
+{
+ my $type = ref shift;
+ croak "Cannot freeze $type object\n";
+}
+
+sub Compress::Raw::Zlib::deflateStream::STORABLE_thaw
+{
+ my $type = ref shift;
+ croak "Cannot thaw $type object\n";
+}
+
+
sub Compress::Raw::Zlib::Inflate::new
{
my $pkg = shift ;
@@ -420,6 +433,18 @@ sub Compress::Raw::Zlib::Inflate::new
$got->value('Dictionary')) ;
}
+sub Compress::Raw::Zlib::inflateStream::STORABLE_freeze
+{
+ my $type = ref shift;
+ croak "Cannot freeze $type object\n";
+}
+
+sub Compress::Raw::Zlib::inflateStream::STORABLE_thaw
+{
+ my $type = ref shift;
+ croak "Cannot thaw $type object\n";
+}
+
sub Compress::Raw::Zlib::InflateScan::new
{
my $pkg = shift ;