AIX-Perfstat

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use lib qw(inc);
use Devel::AssertOS qw(AIX);
use Devel::CheckLib;

# Prompt the user here for any paths and other configuration

check_lib_or_exit(
    # fill in what you prompted the user for here
    lib => [qw(perfstat)]
);

inc/Devel/CheckLib.pm  view on Meta::CPAN

Devel::CheckLib - check that a library is available

=head1 DESCRIPTION

Devel::CheckLib is a perl module that checks whether a particular C
library and its headers are available.

=head1 SYNOPSIS

    # in a Makefile.PL or Build.PL
    use lib qw(inc);
    use Devel::CheckLib;

    check_lib_or_exit( lib => 'jpeg', header => 'jpeglib.h' );
    check_lib_or_exit( lib => [ 'iconv', 'jpeg' ] );
  
    # or prompt for path to library and then do this:
    check_lib_or_exit( lib => 'jpeg', libpath => $additional_path );

=head1 HOW IT WORKS



( run in 0.480 second using v1.01-cache-2.11-cpan-87723dcf8b7 )