Term::Readline patch for AmigaOS
[p5sagit/p5-mst-13.2.git] / lib / CPAN / Nox.pm
CommitLineData
d4fd5c69 1BEGIN{$CPAN::Suppress_readline=1 unless defined $CPAN::term;}
5f05dabc 2
3use CPAN;
4
5$CPAN::META->hasMD5(0);
6$CPAN::META->hasLWP(0);
7@EXPORT = @CPAN::EXPORT;
8
9*AUTOLOAD = \&CPAN::AUTOLOAD;
10
11=head1 NAME
12
13CPAN::Nox - Wrapper around CPAN.pm without using any XS module
14
15=head1 SYNOPSIS
16
17Interactive mode:
18
19 perl -MCPAN::Nox -e shell;
20
21=head1 DESCRIPTION
22
23This package has the same functionality as CPAN.pm, but tries to
24prevent the usage of compiled extensions during it's own
25execution. It's primary purpose is a rescue in case you upgraded perl
26and broke binary compatibility somehow.
27
28=head1 SEE ALSO
29
30CPAN(3)
31
32=cut
33