fix prototype mismatch (from Hans Mulder <hansm@xs4all.nl>)
[p5sagit/p5-mst-13.2.git] / lib / CPAN / Nox.pm
CommitLineData
36263cb3 1package CPAN::Nox;
2
d4fd5c69 3BEGIN{$CPAN::Suppress_readline=1 unless defined $CPAN::term;}
5f05dabc 4
5use CPAN;
6
36263cb3 7$VERSION = "1.00";
55e314ee 8$CPAN::META->has_inst('MD5','no');
9$CPAN::META->has_inst('LWP','no');
09d9d230 10$CPAN::META->has_inst('Compress::Zlib','no');
5f05dabc 11@EXPORT = @CPAN::EXPORT;
12
13*AUTOLOAD = \&CPAN::AUTOLOAD;
14
15=head1 NAME
16
17CPAN::Nox - Wrapper around CPAN.pm without using any XS module
18
19=head1 SYNOPSIS
20
21Interactive mode:
22
23 perl -MCPAN::Nox -e shell;
24
25=head1 DESCRIPTION
26
27This package has the same functionality as CPAN.pm, but tries to
28prevent the usage of compiled extensions during it's own
29execution. It's primary purpose is a rescue in case you upgraded perl
30and broke binary compatibility somehow.
31
32=head1 SEE ALSO
33
34CPAN(3)
35
36=cut
37