Subject: | Makefile.PL should not assert MSWin32 |
The Makefile.PL has this line:
use Devel::AssertOS qw[MSWin32];
This is not correct. What you really want to check is whether Win32::OLE
and other Windows-specific modules are installed. But this is not
restricted to MSWin32, other operating systems (e.g. cygwin) also
support Win32::OLE.
So what you should specify is Win32::OLE and all other required modules
in PREREQ_PM. I see that there are also some other missing, e.g.
Readonly, so you can specifiy it there, too.
Regards,
Slaven