home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_mlb.zip / CPAN / Nox.pm < prev   
Text File  |  1997-11-25  |  630b  |  34 lines

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