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

Hi,
When I am trying to install mod_perl while doing perl Makefile.PL it hangs at Writing Makefile for Apache::Util.
share your solution if you have similar experience.
Thanks,
Artist..
  • Comment on mod_perl installation problem (Apache::Util)

Replies are listed 'Best First'.
(tye)Re: mod_perl installation problem (Apache::Util)
by tye (Sage) on Aug 09, 2001 at 22:18 UTC

    The only thing that comes to mind is a bad NFS volume causing a hang. /:

    Personally, I'd use the Perl debugger to watch what is taking so long. You could, for example, do:

    perl -d Makefile.PL DB<1> t Trace = on DB<2> c
    and then stand back and mostly ignore the tons of output until it stops or seems to be "repeating" and see if the displayed Perl code is helpful.

    If you are lucky, you can hit CTRL-C and get the debugger prompt back and investigate further. If that works, then try the above without doing the "t" command and just wait what seems like a long time before hitting CTRL-C.

            - tye (but my friends call me "Tye")