diff options
author | Paul <paul@paul-desktop.(none)> | 2010-07-24 13:07:29 +0100 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-07-24 17:23:58 +0200 |
commit | 315f9eeab4f1bbcc1f1b259d80d5db3a05952456 (patch) | |
tree | 4fdd1c75d1c690d04d8e6b4019d0617efd6eef38 /cpan/Compress-Raw-Zlib | |
parent | 439cdf38ae50bdfe6ca11c86ccc3917d6b56ec45 (diff) | |
download | perl-315f9eeab4f1bbcc1f1b259d80d5db3a05952456.tar.gz |
Compress 2.030
Diffstat (limited to 'cpan/Compress-Raw-Zlib')
-rw-r--r-- | cpan/Compress-Raw-Zlib/Changes | 8 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/Makefile.PL | 2 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/README | 6 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm | 2 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/pod/FAQ.pod | 2 |
5 files changed, 14 insertions, 6 deletions
diff --git a/cpan/Compress-Raw-Zlib/Changes b/cpan/Compress-Raw-Zlib/Changes index 8c51b108b2..74e1da6063 100644 --- a/cpan/Compress-Raw-Zlib/Changes +++ b/cpan/Compress-Raw-Zlib/Changes @@ -1,6 +1,14 @@ CHANGES ------- + 2.030 22 July 2010 + + * Ran the zlib2ansi script against the files in zlib-src. + Thanks to Nicholas Clark for the reminder. + + * Added "-DNO_VIZ" to DEFINE in Makefile.PL + [RT #65293] + 2.027 24 April 2010 * Updated to include zlib 1.2.5 diff --git a/cpan/Compress-Raw-Zlib/Makefile.PL b/cpan/Compress-Raw-Zlib/Makefile.PL index aa6f5c0053..d999cb483a 100644 --- a/cpan/Compress-Raw-Zlib/Makefile.PL +++ b/cpan/Compress-Raw-Zlib/Makefile.PL @@ -66,7 +66,7 @@ WriteMakefile( NAME => 'Compress::Raw::Zlib', VERSION_FROM => 'lib/Compress/Raw/Zlib.pm', INC => "-I$ZLIB_INCLUDE" , - DEFINE => "$OLD_ZLIB $WALL -DGZIP_OS_CODE=$GZIP_OS_CODE $USE_PPPORT_H" , + DEFINE => "-DNO_VIZ $OLD_ZLIB $WALL -DGZIP_OS_CODE=$GZIP_OS_CODE $USE_PPPORT_H" , XS => { 'Zlib.xs' => 'Zlib.c'}, 'depend' => { 'Makefile' => 'config.in' }, 'clean' => { FILES => '*.c constants.h constants.xs' }, diff --git a/cpan/Compress-Raw-Zlib/README b/cpan/Compress-Raw-Zlib/README index 0762956717..5c1f5ae245 100644 --- a/cpan/Compress-Raw-Zlib/README +++ b/cpan/Compress-Raw-Zlib/README @@ -1,9 +1,9 @@ Compress-Raw-Zlib - Version 2.027 + Version 2.030 - 7th April 2010 + 22nd July 2010 Copyright (c) 2005-2010 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.027" ; + $VERSION = "2.030" ; 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 e9bf39dd71..e6e15c9700 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.027_01'; +$VERSION = '2.030'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/cpan/Compress-Raw-Zlib/pod/FAQ.pod b/cpan/Compress-Raw-Zlib/pod/FAQ.pod index 267e6f39eb..716ddb746b 100644 --- a/cpan/Compress-Raw-Zlib/pod/FAQ.pod +++ b/cpan/Compress-Raw-Zlib/pod/FAQ.pod @@ -39,7 +39,7 @@ available See previous FAQ item. -If the C<Archive::Tar> module is installed and either the C<uncompress> or +If the C<Archive::Tar> module is instaled and either the C<uncompress> or C<gunzip> programs are available, you can use one of these workarounds to read C<.tar.Z> files. |