tpais has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

Can anybody help how to and where I can look for an solution with the following error message ?

CODE(0xb3ef50) Compilation failed in require at /usr/local/lib/perl5/s +ite_perl/5.8.8/URI/_generic.pm line 3. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.8.8/ +URI.pm line 88.

Edit: g0n - code tags

Replies are listed 'Best First'.
Re: Compilation failed
by syphilis (Archbishop) on Dec 11, 2007 at 07:22 UTC
    What precisely are you doing that gives rise to that error ?

    Line 3 of URI/_generic.pm requires URI/_query.pm which, apparently, can't be found - though _query.pm should be in the same folder as URI/_generic.pm.

    Cheers,
    Rob
      Hi, since I added the following lines, I get this error:
      my $max_tasks=3; my $pid=fork(); if ($t_counter >= $max_tasks) { waitpid(-1,0); } $t_counter++; ...
      sorry, I am a beginner in using perl -d, so it needs a little time to give you the answer (and howto find out the line, where this perl programm is asking for URI.pm). Because i do not use this module direct. I use the following modules:
      use strict; use Time::Out qw(timeout); use IPC::Open3; use Log::Log4perl qw(:easy); use Date::Format; use Config::General; use DBI;
        solved. I found the bug in an external module.