Subject: | Small glitch in Makefile.pm |
The Makefile is incompatible with development versions of
ExtUtils::MakeMaker. Use:
---
use version;
WriteMakefile(
[...]
(ExtUtils::MakeMaker->VERSION gt "6.11") ? (NO_META => 1) : (),
[...]
---
instead of:
(ExtUtils::MakeMaker->VERSION >= 6.11)
which will die if it encounters non-numerical version strings.
Cheers,
Sebastian