Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / 5.8.0 / CPAN / Nox.pm
CommitLineData
86530b38
AT
1package CPAN::Nox;
2use strict;
3use vars qw($VERSION @EXPORT);
4
5BEGIN{
6 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
7}
8
9use base 'Exporter';
10use CPAN;
11
12$VERSION = "1.02";
13$CPAN::META->has_inst('Digest::MD5','no');
14$CPAN::META->has_inst('LWP','no');
15$CPAN::META->has_inst('Compress::Zlib','no');
16@EXPORT = @CPAN::EXPORT;
17
18*AUTOLOAD = \&CPAN::AUTOLOAD;
19
20__END__
21
22=head1 NAME
23
24CPAN::Nox - Wrapper around CPAN.pm without using any XS module
25
26=head1 SYNOPSIS
27
28Interactive mode:
29
30 perl -MCPAN::Nox -e shell;
31
32=head1 DESCRIPTION
33
34This package has the same functionality as CPAN.pm, but tries to
35prevent the usage of compiled extensions during its own
36execution. Its primary purpose is a rescue in case you upgraded perl
37and broke binary compatibility somehow.
38
39=head1 SEE ALSO
40
41CPAN(3)
42
43=cut
44