B::Deparse fixes for implicit smartmatching in given/when
[p5sagit/p5-mst-13.2.git] / ext / IO_Compress_Base / README
CommitLineData
25f0751f 1
80e5fcd6 2 IO-Compress-Base
25f0751f 3
80e5fcd6 4 Version 2.008
25f0751f 5
80e5fcd6 6 2nd November 2007
25f0751f 7
8
b0cda13f 9 Copyright (c) 2005-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.
12
13
14
15
25f0751f 16DESCRIPTION
17-----------
18
19
cb7abd7f 20This module is the base class for all IO::Compress and IO::Uncompress
25f0751f 21modules.
22
23
24
25
26
27PREREQUISITES
28-------------
29
80e5fcd6 30Before you can build IO-Compress-Base you need to have the following
25f0751f 31installed on your system:
32
33
34 * Perl 5.004 or better.
35
36
37
38
39
40BUILDING THE MODULE
41-------------------
42
43Assuming you have met all the prerequisites, the module can now be built
44using this sequence of commands:
45
46 perl Makefile.PL
47 make
48 make test
49
50
51
52INSTALLATION
53------------
54
80e5fcd6 55To install IO-Compress-Base, run the command below:
25f0751f 56
57 make install
58
59
60
61
62
63TROUBLESHOOTING
64---------------
65
66
67
68
69
70
71
72
73
74
75
76
77FEEDBACK
78--------
79
80e5fcd6 80How to report a problem with IO-Compress-Base.
25f0751f 81
82To help me help you, I need all of the following information:
83
84 1. The Versions of everything relevant.
85 This includes:
86
87 a. The *complete* output from running this
88
89 perl -V
90
91 Do not edit the output in any way.
92 Note, I want you to run "perl -V" and NOT "perl -v".
93
94 If your perl does not understand the "-V" option it is too
95 old. This module needs Perl version 5.004 or better.
96
80e5fcd6 97 b. The version of IO-Compress-Base you have.
98 If you have successfully installed IO-Compress-Base, this one-liner
25f0751f 99 will tell you:
100
101 perl -MIO::Compress::Base -e 'print qq[ver $IO::Compress::Base::VERSION\n]'
102
103 If you are running windows use this
104
105 perl -MIO::Compress::Base -e "print qq[ver $IO::Compress::Base::VERSION\n]"
106
80e5fcd6 107 If you haven't installed IO-Compress-Base then search IO::Compress::Base.pm
25f0751f 108 for a line like this:
109
80e5fcd6 110 $VERSION = "2.008" ;
25f0751f 111
112
113
80e5fcd6 114 2. If you are having problems building IO-Compress-Base, send me a
115 complete log of what happened. Start by unpacking the IO-Compress-Base
25f0751f 116 module into a fresh directory and keep a log of all the steps
117
118 [edit config.in, if necessary]
119 perl Makefile.PL
120 make
121 make test TEST_VERBOSE=1
122
123
124Paul Marquess <pmqs@cpan.org>