home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Updates / Perl / RPC / !Perl / lib / zip / CPAN / Nox.pm < prev   
Encoding:
Perl POD Document  |  1999-04-02  |  715 b   |  38 lines

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