ExtUtils::FindFunctions - Find functions in external libraries


ExtUtils-FindFunctions documentation  | view source Contained in the ExtUtils-FindFunctions distribution.

Index


NAME

Top

ExtUtils::FindFunctions - Find functions in external libraries

VERSION

Top

Version 0.02

SYNOPSIS

Top

    use ExtUtils::FindFunctions;

    my @check = qw(pcap_findalldevs  pcap_open_dead  pcap_setnonblock  pcap_lib_version);
    my @funcs = have_functions(libs => '-lpcap', funcs => \@check, return_as => 'array');

DESCRIPTION

Top

This module provides the have_functions() function which can be used to check if given functions are provided by an external library. Its aim is to be used as an embedded library by Makefile.PL which needs such facilities. Use the install-extutils-findfunctions command to embed it in your distribution.

EXPORT

Top

The module exports by default the have_functions() function.

FUNCTIONS

Top

have_functions()

Load the specified libraries and search for the given functions names. The results are returned as an array or as an hash depending on the return_as parameter.

Parameters

AUTHOR

Top

Sébastien Aperghis-Tramoni, <sebastien at aperghis.net>

BUGS

Top

Please report any bugs or feature requests to bug-extutils-findfunctions at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ExtUtils-FindFunctions. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc ExtUtils::FindFunctions

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/ExtUtils-FindFunctions

* CPAN Ratings

http://cpanratings.perl.org/d/ExtUtils-FindFunctions

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-FindFunctions

* Search CPAN

http://search.cpan.org/dist/ExtUtils-FindFunctions

COPYRIGHT & LICENSE

Top


ExtUtils-FindFunctions documentation  | view source Contained in the ExtUtils-FindFunctions distribution.