Subject: | Version mismatch |
Date: | Tue, 1 Oct 2013 16:18:13 +0000 |
To: | "bug-Object-InsideOut [...] rt.cpan.org" <bug-Object-InsideOut [...] rt.cpan.org> |
From: | "Vermeul Swen (SWS)" <swen [...] ethz.ch> |
When I use Object::InsideOut (Version 3.97, Perl v5.14.1) in combination
with some of my own modules, I get the following error:
OIO::Internal error: Failure compiling file 'Object/InsideOut/Universal.pm'
Error: OIO error: Trapped uncaught error
Error: Version mismatch
Package: Object::InsideOut
I haven't found out what is causing the problem yet, but
fixed the problem by altering the line
# Ensure correct versioning
($Object::InsideOut::VERSION == 3.97)
or die("Version mismatch\n");
to
# Ensure correct versioning
($Object::InsideOut::VERSION eq 3.97)
or die("Version mismatch\n");
in the modules
Object/InsideOut/Universal.pm
Object/InsideOut/Cumulative.pm
Object/InsideOut/Autoload.pm
etc.
Maybe you have an idea what is going wrong?
In any case: great module!
Best regards,
Swen