On 10/11/07, Eric Wilhelm <[EMAIL PROTECTED]> wrote: > 1. If find it odd that there's nothing about the build process in this > report.
CPAN::Reporter has, since the beginning, only reported on the output of the phase (PL, make, test) that failed. Originally, that was a result of the fact that it only supported the test phase, not the PL or make phases. If a phase passes, the report output isn't clogged with the results. (E.g. all the compilation output for an XS module or other library.) > 2. I thought about putting this in the Build.PL, but afaik, libhid > isn't actually limited to Linux (it did originate in debian though.) > > die "OS unsupported\n" unless($^O eq 'linux'); > > Suggestions? At one point, David Cantrell had volunteered to write Devel::AssertLib to complement Devel::AssertOS. Presumably, when that is done, you'll be able to bundle it in inc/ and do this: use 'inc'; use Devel::AssertLib '-lhid'; # rest of Build.PL follows as normal If David hasn't made a lot of progress on that, I'm willing to take it on. Regards, David