mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 10:26:28 -04:00
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
14 lines
690 B
Text
14 lines
690 B
Text
Often Perl modules are written to wrap functionality found in existing C
|
|
headers, libraries, or to use OS-specific features. It is useful in the Build.PL
|
|
or Makefile.PL file to check for the existance of these requirements before
|
|
attempting to actually build the module.
|
|
|
|
Objects in this class provide an extension around ExtUtils::CBuilder to simplify
|
|
the creation of a .c file, compiling, linking and running it, to test if a
|
|
certain feature is present.
|
|
|
|
It may also be necessary to search for the correct library to link against, or
|
|
for the right include directories to find header files in. This class also
|
|
provides assistance here.
|
|
|
|
WWW: https://metacpan.org/release/ExtUtils-CChecker
|