Subject: | Support perl installs without . in @INC. |
Not sure if you are aware but partially in reaction to CVE-2016-1238, In 5.26 it will be a build option to make a perl without . in @INC.
Most modules work without . in @INC with the exception of at build time where we're running into a few that have issues.
While smoking CPAN, I determined that AnyEvent needs a minor patch to get it to support this. Would you mind applying it in your next release?
diff --git a/Makefile.PL b/Makefile.PL
index ef2ab4a..70b30b0 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -22,7 +22,7 @@ print <<EOF;
EOF
-do "constants.pl.PL"
+do "./constants.pl.PL"
or die "cannot execute constants.pl.PL: $@";
WriteMakefile(
Thanks,
Todd Rinaldo