Subject: | ExtUtils::Depends and ExtUtils::PkgConfig are not explicit configure dependencies |
This fixes it:
diff --git a/Makefile.PL b/Makefile.PL
index 44f8785..af1d852 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -39,4 +39,8 @@ WriteMakefile(
INC => $inc, # e.g., '-I. -I/usr/include/other'
# Un-comment this if you add C files to link with later:
# OBJECT => '$(O_FILES)', # link all the C files too
+ CONFIGURE_REQUIRES => {
+ 'ExtUtils::Depends' => 0,
+ 'ExtUtils::PkgConfig' => 0,
+ },
);