This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Change 31798 forgot to add the op 'once' to Opcode.pm
[perl5.git] / ext / IO_Compress_Base / README
CommitLineData
25f0751f
PM
1
2 IO::Compress::Base
3
d56f7e4c 4 Version 2.006
25f0751f 5
d56f7e4c 6 1st September 2007
25f0751f
PM
7
8
b0cda13f 9 Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
25f0751f
PM
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
PM
16DESCRIPTION
17-----------
18
19
cb7abd7f 20This module is the base class for all IO::Compress and IO::Uncompress
25f0751f
PM
21modules.
22
23
24
25
26
27PREREQUISITES
28-------------
29
30Before you can build IO::Compress::Base you need to have the following
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
55To install IO::Compress::Base, run the command below:
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
80How to report a problem with IO::Compress::Base.
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
97 b. The version of IO::Compress::Base you have.
98 If you have successfully installed IO::Compress::Base, this one-liner
99 will tell you:
100
101 perl -MIO::Compress::Base -e 'print qq[ver $IO::Compress::Base::VERSION\n]'
102
103 If you areplete* output from running this
104
105 perl -V
106
107 Do not edit the output in any way.
108 Note, I want you to run "perl -V" and NOT "perl -v".
109
110 If your perl does not understand the "-V" option it is too
111 old. This module needs Perl version 5.004 or better.
112
113 b. The version of IO::Compress::Base you have.
114 If you have successfully installed IO::Compress::Base, this one-liner
115 will tell you:
116
117 perl -MIO::Compress::Base -e 'print qq[ver $IO::Compress::Base::VERSION\n]'
118
119 If you are running windows use this
120
121 perl -MIO::Compress::Base -e "print qq[ver $IO::Compress::Base::VERSION\n]"
122
123 If you haven't installed IO::Compress::Base then search IO::Compress::Base.pm
124 for a line like this:
125
126 $VERSION = "1.05" ;
127
128
129
130 2. If you are having problems building IO::Compress::Base, send me a
131 complete log of what happened. Start by unpacking the IO::Compress::Base
132 module into a fresh directory and keep a log of all the steps
133
134 [edit config.in, if necessary]
135 perl Makefile.PL
136 make
137 make test TEST_VERBOSE=1
138
139
140Paul Marquess <pmqs@cpan.org>