summaryrefslogtreecommitdiff
path: root/ext/Compress/Raw
diff options
context:
space:
mode:
authorPaul Marquess <paul.marquess@btinternet.com>2008-05-05 19:32:54 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-05-10 20:04:34 +0000
commitbe71433107c54b7cbcb6d0737baf8d238006d75f (patch)
treebb7201914f2a4613acaa84f5f81a45cde0f7e2ae /ext/Compress/Raw
parent68f8932eb570af656553ed44c11a23f0a216a3ec (diff)
downloadperl-be71433107c54b7cbcb6d0737baf8d238006d75f.tar.gz
IO::Compress::* 2.010
From: "Paul Marquess" <Paul.Marquess@ntlworld.com> Message-ID: <01dc01c8aed6$0eb13cf0$6501a8c0@myopwv.com> p4raw-id: //depot/perl@33816
Diffstat (limited to 'ext/Compress/Raw')
-rw-r--r--ext/Compress/Raw/Zlib/Changes4
-rw-r--r--ext/Compress/Raw/Zlib/README6
-rw-r--r--ext/Compress/Raw/Zlib/Zlib.xs5
-rw-r--r--ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm2
-rw-r--r--ext/Compress/Raw/Zlib/private/MakeUtil.pm2
5 files changed, 15 insertions, 4 deletions
diff --git a/ext/Compress/Raw/Zlib/Changes b/ext/Compress/Raw/Zlib/Changes
index 40c4ecb696..7f76041446 100644
--- a/ext/Compress/Raw/Zlib/Changes
+++ b/ext/Compress/Raw/Zlib/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.010 5 May 2008
+
+ * No Changes
+
2.009 20 April 2008
* No Changes
diff --git a/ext/Compress/Raw/Zlib/README b/ext/Compress/Raw/Zlib/README
index 0a4216d6be..240245f6c0 100644
--- a/ext/Compress/Raw/Zlib/README
+++ b/ext/Compress/Raw/Zlib/README
@@ -1,9 +1,9 @@
Compress-Raw-Zlib
- Version 2.009
+ Version 2.010
- 20th April 2008
+ 5th May 2008
Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
@@ -326,7 +326,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.009" ;
+ $VERSION = "2.010" ;
c. The version of zlib you have used.
If you have successfully installed Compress-Raw-Zlib, this one-liner
diff --git a/ext/Compress/Raw/Zlib/Zlib.xs b/ext/Compress/Raw/Zlib/Zlib.xs
index aee174ec4d..3386f7fc97 100644
--- a/ext/Compress/Raw/Zlib/Zlib.xs
+++ b/ext/Compress/Raw/Zlib/Zlib.xs
@@ -64,6 +64,11 @@
# include "ppport.h"
#endif
+#if PERL_REVISION == 5 && PERL_VERSION == 9
+ /* For Andreas */
+# define sv_pvbyte_force(sv,lp) sv_pvbyten_force(sv,lp)
+#endif
+
#if PERL_REVISION == 5 && (PERL_VERSION < 8 || (PERL_VERSION == 8 && PERL_SUBVERSION < 4 ))
# ifdef SvPVbyte_force
diff --git a/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm b/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
index 7eb89151eb..7e8ff1736f 100644
--- a/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
+++ b/ext/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.009';
+$VERSION = '2.010';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/ext/Compress/Raw/Zlib/private/MakeUtil.pm b/ext/Compress/Raw/Zlib/private/MakeUtil.pm
index af86677a41..974b761ae2 100644
--- a/ext/Compress/Raw/Zlib/private/MakeUtil.pm
+++ b/ext/Compress/Raw/Zlib/private/MakeUtil.pm
@@ -6,6 +6,8 @@ use strict ;
use Config qw(%Config);
use File::Copy;
+my $VERSION = '1.0';
+
BEGIN
{