in reply to Chasing up a module dependency issue
I think this comes from a module that uses (resp. inherits from) Exporter and where Module::Name->import is called with method_name as argument. The simplest case would be:
use Module::Name 'method_name';
... but that's likely too obvious and you've tried that already. A more contrived way would be something like:
my $module = 'Module::Name'; require 'Module/Name.pm'; $module->import('method_name');
Maybe (maybe) your code is picking up the wrong versions of Module::Name somewhere else in @INC? Dumping \%INC might tell you which version got picked up.
The easiest "fix" in my opinion would be to preload all the relevant modules at the very top of your program:
#!perl -w use strict; use Module::A; use Module::B; use Module::Name 'method_name'; ...
That way, all the modules should be loaded in the correct order...
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Chasing up a module dependency issue
by cLive ;-) (Prior) on Mar 07, 2016 at 16:28 UTC | |
by Corion (Patriarch) on Mar 07, 2016 at 18:32 UTC | |
by cLive ;-) (Prior) on Mar 07, 2016 at 18:57 UTC |
In Section
Seekers of Perl Wisdom