Blame README

Packit c4f214
This is the README file for Module::Load::Conditional -- a way to
Packit c4f214
conditionally load and query modules.
Packit c4f214
Packit c4f214
Please type "perldoc Module::Load::Conditional" after installation to
Packit c4f214
see the module usage information.
Packit c4f214
Packit c4f214
#####################################################################
Packit c4f214
Packit c4f214
* Description
Packit c4f214
Packit c4f214
Module::Load::Conditional
Packit c4f214
Packit c4f214
    Allows you to query the state of modules on your system. It can
Packit c4f214
    tell you if you have certain modules installed without attempting
Packit c4f214
    to C<use> them and can do smart loading of modules.
Packit c4f214
    Also it can tell you what *other* modules a certain module
Packit c4f214
    requires.
Packit c4f214
Packit c4f214
#####################################################################
Packit c4f214
Packit c4f214
* Installation
Packit c4f214
Packit c4f214
Module::Load::Conditional uses the standard perl module install
Packit c4f214
process:
Packit c4f214
Packit c4f214
perl Makefile.PL
Packit c4f214
make
Packit c4f214
make test
Packit c4f214
make install
Packit c4f214
Packit c4f214
The module uses no C or XS parts, so no c-compiler is required.
Packit c4f214
Packit c4f214
######################################################################
Packit c4f214
Packit c4f214
AUTHOR
Packit c4f214
    This module by Jos Boumans <kane@cpan.org>.
Packit c4f214
Packit c4f214
COPYRIGHT
Packit c4f214
    This module is copyright (c) 2002 Jos Boumans <kane@cpan.org>. All
Packit c4f214
    rights reserved.
Packit c4f214
Packit c4f214
    This library is free software; you may redistribute and/or modify it
Packit c4f214
    under the same terms as Perl itself.