summaryrefslogtreecommitdiff
path: root/cpan/IO-Compress/README
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-10-02 11:11:19 +0100
committerNicholas Clark <nick@ccl4.org>2009-10-02 11:11:19 +0100
commit3fd969f44926f311e1c67d9470a9e936f7af2d73 (patch)
treece6e701f0f80bfd0de9befe7b1bf766e37a6cfbb /cpan/IO-Compress/README
parent70b2007073159a8b94a74b0b9ba406945c45917d (diff)
downloadperl-3fd969f44926f311e1c67d9470a9e936f7af2d73.tar.gz
Move IO::Compress from ext/ to cpan/
Diffstat (limited to 'cpan/IO-Compress/README')
-rw-r--r--cpan/IO-Compress/README103
1 files changed, 103 insertions, 0 deletions
diff --git a/cpan/IO-Compress/README b/cpan/IO-Compress/README
new file mode 100644
index 0000000000..67cc0c6ed4
--- /dev/null
+++ b/cpan/IO-Compress/README
@@ -0,0 +1,103 @@
+
+ IO-Compress
+
+ Version 2.021
+
+ 30th August 2009
+
+ Copyright (c) 1995-2009 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.
+
+DESCRIPTION
+-----------
+
+This distribution provides a Perl interface to allow reading and writing of
+compressed data created with the zlib and bzip2 libraries.
+
+IO-Compress supports reading and writing of bzip2, RFC 1950, RFC
+1951, RFC 1952 (i.e. gzip) and zip files/buffers.
+
+The following modules used to be distributed separately, but are now
+included with the IO-Compress distribution.
+
+ Compress-Zlib
+ IO-Compress-Zlib
+ IO-Compress-Bzip2
+ IO-Compress-Base
+
+PREREQUISITES
+-------------
+
+Before you can build IO-Compress you need to have the following
+installed on your system:
+
+ * Perl 5.004 or better.
+ * Compress::Raw::Zlib
+ * Compress::Raw::Bzip2
+
+BUILDING THE MODULE
+-------------------
+
+Assuming you have met all the prerequisites, the module can now be built
+using this sequence of commands:
+
+ perl Makefile.PL
+ make
+ make test
+
+INSTALLATION
+------------
+
+To install IO-Compress, run the command below:
+
+ make install
+
+TROUBLESHOOTING
+---------------
+
+FEEDBACK
+--------
+
+How to report a problem with IO-Compress.
+
+To help me help you, I need all of the following information:
+
+ 1. The Versions of everything relevant.
+ This includes:
+
+ a. The *complete* output from running this
+
+ perl -V
+
+ Do not edit the output in any way.
+ Note, I want you to run "perl -V" and NOT "perl -v".
+
+ If your perl does not understand the "-V" option it is too
+ old. This module needs Perl version 5.004 or better.
+
+ b. The version of IO-Compress you have.
+ If you have successfully installed IO-Compress, this one-liner
+ will tell you:
+
+ perl -MIO::Compress::Gzip -e 'print qq[ver $IO::Compress::Gzip::VERSION\n]'
+
+ If you are running windows use this
+
+ perl -MIO::Compress::Gzip -e "print qq[ver $IO::Compress::Gzip::VERSION\n]"
+
+ If you haven't installed IO-Compress then search IO::Compress::Gzip.pm
+ for a line like this:
+
+ $VERSION = "2.021" ;
+
+ 2. If you are having problems building IO-Compress, send me a
+ complete log of what happened. Start by unpacking the IO-Compress
+ module into a fresh directory and keep a log of all the steps
+
+ [edit config.in, if necessary]
+ perl Makefile.PL
+ make
+ make test TEST_VERBOSE=1
+
+Paul Marquess <pmqs@cpan.org>