PkgConfig
as a configure_requires
Graham THE Ollis <plicease@cpan.org>
YAPC :: NA 2014
25 June 2014
ME!
Graham THE Ollis
pkg-config
ExtUtils::PkgConfig’s Makefile.PL
# don't go any further if pkg-config cannot be found.�my $have_pkg_config = `pkg-config --version`;� �if ($have_pkg_config eq "") {� # Warn and exit with status 0 to indicate (to the user and the CPAN� # testers infrastructure) that this module won't work on this machine.� warn <<"__EOW__";�***�*** ExtUtils::PkgConfig requires the pkg-config utility, but it doesn't�*** seem to be in your PATH. Is it correctly installed?�*** PATH=$ENV{PATH}�***�__EOW__� exit 0;�}
PkgConfig
PkgConfig supported platforms
PkgConfig
PkgConfig is the official pkg-config for Strawberry Perl as of 5.20.0
Plug
Consider using PkgConfig for your next project!
Already using PkgConfig:
ME!