http://www.perlmonks.org?node_id=1004564


in reply to Re^2: Silence CPAN Testers on obviously broken platforms?
in thread Silence CPAN Testers on obviously broken platforms?

No, the FAQ explicitly states:

"How can I stop getting FAIL reports for missing libraries or other non-Perl dependencies?"

If you have some special dependencies and don't want to get CPAN Testers reports if a dependency is not available, just exit from the Makefile.PL or Build.PL normally (with an exit code of 0) before the Makefile or Build file is created.

exit 0 unless some_dependency_is_met ();

Enjoy, Have FUN! H.Merijn
  • Comment on Re^3: Silence CPAN Testers on obviously broken platforms?