1*0Sstevel@tonic-gatepackage CPAN::Nox; 2*0Sstevel@tonic-gateuse strict; 3*0Sstevel@tonic-gateuse vars qw($VERSION @EXPORT); 4*0Sstevel@tonic-gate 5*0Sstevel@tonic-gateBEGIN{ 6*0Sstevel@tonic-gate $CPAN::Suppress_readline=1 unless defined $CPAN::term; 7*0Sstevel@tonic-gate} 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gateuse base 'Exporter'; 10*0Sstevel@tonic-gateuse CPAN; 11*0Sstevel@tonic-gate 12*0Sstevel@tonic-gate$VERSION = "1.03"; 13*0Sstevel@tonic-gate$CPAN::META->has_inst('Digest::MD5','no'); 14*0Sstevel@tonic-gate$CPAN::META->has_inst('LWP','no'); 15*0Sstevel@tonic-gate$CPAN::META->has_inst('Compress::Zlib','no'); 16*0Sstevel@tonic-gate@EXPORT = @CPAN::EXPORT; 17*0Sstevel@tonic-gate 18*0Sstevel@tonic-gate*AUTOLOAD = \&CPAN::AUTOLOAD; 19*0Sstevel@tonic-gate 20*0Sstevel@tonic-gate1; 21*0Sstevel@tonic-gate 22*0Sstevel@tonic-gate__END__ 23*0Sstevel@tonic-gate 24*0Sstevel@tonic-gate=head1 NAME 25*0Sstevel@tonic-gate 26*0Sstevel@tonic-gateCPAN::Nox - Wrapper around CPAN.pm without using any XS module 27*0Sstevel@tonic-gate 28*0Sstevel@tonic-gate=head1 SYNOPSIS 29*0Sstevel@tonic-gate 30*0Sstevel@tonic-gateInteractive mode: 31*0Sstevel@tonic-gate 32*0Sstevel@tonic-gate perl -MCPAN::Nox -e shell; 33*0Sstevel@tonic-gate 34*0Sstevel@tonic-gate=head1 DESCRIPTION 35*0Sstevel@tonic-gate 36*0Sstevel@tonic-gateThis package has the same functionality as CPAN.pm, but tries to 37*0Sstevel@tonic-gateprevent the usage of compiled extensions during its own 38*0Sstevel@tonic-gateexecution. Its primary purpose is a rescue in case you upgraded perl 39*0Sstevel@tonic-gateand broke binary compatibility somehow. 40*0Sstevel@tonic-gate 41*0Sstevel@tonic-gate=head1 SEE ALSO 42*0Sstevel@tonic-gate 43*0Sstevel@tonic-gateCPAN(3) 44*0Sstevel@tonic-gate 45*0Sstevel@tonic-gate=cut 46*0Sstevel@tonic-gate 47