Compression Modules Update for EBCDIC
[p5sagit/p5-mst-13.2.git] / ext / Compress / Zlib / README
CommitLineData
642e522c 1
80e5fcd6 2 Compress-Zlib
f4c6fd49 3
80e5fcd6 4 Version 2.008
25f0751f 5
80e5fcd6 6 2nd November 2007
642e522c 7
f4c6fd49 8
b0cda13f 9 Copyright (c) 1995-2007 Paul Marquess. All rights reserved.
25f0751f 10 This program is free software; you can redistribute it
11 and/or modify it under the same terms as Perl itself.
f4c6fd49 12
f4c6fd49 13
f4c6fd49 14
15
16DESCRIPTION
17-----------
18
f4c6fd49 19
25f0751f 20This module provides a Perl interface to the zlib compression library.
f4c6fd49 21
f4c6fd49 22
23
642e522c 24
25
f4c6fd49 26PREREQUISITES
27-------------
28
80e5fcd6 29Before you can build Compress-Zlib you need to have the following
f4c6fd49 30installed on your system:
31
f4c6fd49 32
33 * Perl 5.004 or better.
25f0751f 34 * Compress::Raw::Zlib
80e5fcd6 35 * IO::Compress::Gzip
25f0751f 36
37
f4c6fd49 38
f4c6fd49 39
40
41BUILDING THE MODULE
42-------------------
43
44Assuming you have met all the prerequisites, the module can now be built
45using this sequence of commands:
46
47 perl Makefile.PL
48 make
49 make test
50
51
52
53INSTALLATION
54------------
55
80e5fcd6 56To install Compress-Zlib, run the command below:
f4c6fd49 57
58 make install
59
25f0751f 60
61
f4c6fd49 62
63
64TROUBLESHOOTING
65---------------
66
25f0751f 67
f4c6fd49 68Undefined Symbol gzsetparams
69----------------------------
70
80e5fcd6 71If you get the error shown below when you run the Compress-Zlib test
25f0751f 72harness it probably means you are running a copy of zlib that is
73version 1.0.5 or older.
f4c6fd49 74
75t/01version.........Can't load 'blib/arch/auto/Compress/Zlib/Zlib.so' for
25f0751f 76 module Compress::Raw::Zlib: blib/arch/auto/Compress/Raw/Zlib/Zlib.so:
f4c6fd49 77 undefined symbol: gzsetparams at ...
78
79There are two ways to fix this problem:
80
81 1. Upgrade to the latest version of zlib.
82
83 2. Edit config.in and set the OLD_ZLIB variable to True.
84
85
86
87Test Harness 01version fails
88----------------------------
25f0751f 89If the 01version test harness fails, and the problem isn't covered by the
90scenario above, it probably means that you have two versions of
91zlib installed on your system.
f4c6fd49 92
93Run the command below to see if this is indeed the case
94
95 make test TEST_VERBOSE=1 TEST_FILES=t/01version.t
96
97Try removing the one you don't want to use and rebuild.
98
99
100
f4c6fd49 101
642e522c 102
642e522c 103
f4c6fd49 104
105
106
f4c6fd49 107FEEDBACK
108--------
109
80e5fcd6 110How to report a problem with Compress-Zlib.
f4c6fd49 111
112To help me help you, I need all of the following information:
113
25f0751f 114 1. The Versions of everything relevant.
115 This includes:
116
117 a. The *complete* output from running this
118
119 perl -V
120
121 Do not edit the output in any way.
122 Note, I want you to run "perl -V" and NOT "perl -v".
123
124 If your perl does not understand the "-V" option it is too
125 old. This module needs Perl version 5.004 or better.
126
80e5fcd6 127 b. The version of Compress-Zlib you have.
128 If you have successfully installed Compress-Zlib, this one-liner
25f0751f 129 will tell you:
f4c6fd49 130
25f0751f 131 perl -MCompress::Zlib -e 'print qq[ver $Compress::Zlib::VERSION\n]'
f4c6fd49 132
25f0751f 133 If you are running windows use this
f4c6fd49 134
25f0751f 135 perl -MCompress::Zlib -e "print qq[ver $Compress::Zlib::VERSION\n]"
f4c6fd49 136
80e5fcd6 137 If you haven't installed Compress-Zlib then search Compress::Zlib.pm
25f0751f 138 for a line like this:
f4c6fd49 139
80e5fcd6 140 $VERSION = "2.008" ;
f4c6fd49 141
142
f4c6fd49 143
80e5fcd6 144 2. If you are having problems building Compress-Zlib, send me a
145 complete log of what happened. Start by unpacking the Compress-Zlib
f4c6fd49 146 module into a fresh directory and keep a log of all the steps
147
148 [edit config.in, if necessary]
149 perl Makefile.PL
150 make
151 make test TEST_VERBOSE=1
152
153
154Paul Marquess <pmqs@cpan.org>