brent.allsop has asked for the wisdom of the Perl Monks concerning the following question:
I don’t understand what could be causing this.[Wed Aug 22 19:19:23 2007] [error] Undefined subroutine &XSLoader::loa +d called at /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/APR/XSLoa +der.pm line 31. Compilation failed in require at /usr/lib/perl5/site_perl/5.8.8/Apache/compat.pm line 50. BEGIN failed--compilation aborted at /usr/lib/perl5/site_perl/5.8.8/Ap +ache/compat.pm line 50. Compilation failed in require at /etc/httpd/conf/startup.pl line 20. BEGIN failed--compilation aborted at /etc/httpd/conf/startup.pl line 2 +0. Compilation failed in require at (eval 2) line 1. [Wed Aug 22 19:19:23 2007] [error] Can't load Perl file: /etc/httpd/conf/startup.pl for server c-71-195-247-134.hsd1.ut.comcast +.net:0, exiting...
package APR::XSLoader; use strict; use warnings FATAL => 'all'; use XSLoader (); BEGIN { unless (defined &BOOTSTRAP) { *BOOTSTRAP = sub () { 0 }; } } sub load { return unless BOOTSTRAP; XSLoader::load(@_); # this is line 31 where the undefin +ed occurs. } 1; __END__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XSLoad::load calls itself?
by Errto (Vicar) on Aug 29, 2007 at 03:14 UTC | |
by tye (Sage) on Aug 29, 2007 at 04:30 UTC | |
by brent.allsop (Acolyte) on Aug 29, 2007 at 16:57 UTC | |
by tye (Sage) on Aug 29, 2007 at 17:02 UTC | |
by brent.allsop (Acolyte) on Sep 01, 2007 at 22:12 UTC | |
|
Re: XSLoad::load calls itself?
by Anonymous Monk on Aug 29, 2007 at 03:16 UTC |