in reply to Version Conflict and XSLoader
You need a newer (Update: or fixed) version of something, and that something is probably a module. Updated: Whenever you see VERSION or a version number mentioned in an error, you either have an older version of something installed than what you need, or a module is installed incorrectly.
It could be something called like this:
oruse <ModuleName> <version.number>;
Update:or it could mean a module is completely broken in your installation.use <ModuleName> <version.number> qw( import these things );
Update: The next section doesn't help with module installations being completely broken, which as ikegami points out is the culprit here.
See use and maybe require. Especially the part where the docs for use() state:If the VERSION argument is present between Module and LIST, then the "use" will call the VERSION method in class Module with the given version as an argument. The default VERSION method, inherited from the UNIVERSAL class, croaks if the given version is larger than the value of the variable $Module::VERSION.
Your particular issue appears (from a glance) to be with IO::Scalar, but the same issue happens with different modules, so the method is more important in the long run than the specifics. It appears further that from a quick look as IO::Scalar's docs on CPAN that it is part of the IO::Stringy package. Update: My glance was wrong. It's PerlIO::scalar in question, as ikegami pointed out.
Update: as ikegami points out, you can't just copy files around without paying attention to some restraints. Doing so will break things and give you this type of error.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Receiving Error when running script
by ikegami (Patriarch) on Sep 19, 2007 at 18:08 UTC | |
by almaler (Novice) on Sep 19, 2007 at 18:19 UTC | |
by ikegami (Patriarch) on Sep 19, 2007 at 18:31 UTC | |
by ww (Archbishop) on Sep 19, 2007 at 18:33 UTC | |
by mr_mischief (Monsignor) on Sep 19, 2007 at 18:38 UTC | |
by almaler (Novice) on Sep 19, 2007 at 20:17 UTC | |
|
Re^2: Version Conflict and XSLoader
by almaler (Novice) on Sep 19, 2007 at 17:58 UTC |