Alien-MeCab

 view release on metacpan or  search on metacpan

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

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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.236 second using v1.01-cache-2.11-cpan-454fe037f31 )