The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

SYNOPSIS

    use Module::Build::Pluggable (
        'CheckLib' => {
            lib => 'crypto',
        },
    );

DESCRIPTION

This is a wrapper module for Devel::CheckLib.

HOW CAN I CHECK MULTIPLE LIBS?

You can use this plugin multiple times.

i.e.

    use Module::Build::Pluggable (
        'CheckLib' => {
            lib => 'crypto',
        },
        'CheckLib' => {
            lib => 'mecab',
        },
    );