Hello![...]
I wanted to build a debian package of apache for my specific purposes. My specific purpose is mod_accel support. I downloaded a source for apache debian package (apache-1.3.26) from stable distribution, add mod_accel patches and it have been compiled well.
Program received signal SIGABRT, Aborted. [Switching to Thread 1024 (LWP 15551)] 0x40107781 in kill () from /lib/libc.so.6
As you can see from the trace if fails when loading your startup file. You want to find the offensive line that triggers this failure. One way to do it is to go one frame up:
(gdb) where #0 0x40107781 in kill () from /lib/libc.so.6 #1 0x40373cd3 in Perl_my_unexec () from /usr/lib/libperl.so.5.6
(gdb) up
and then ask perl where it was when the problem has happened.
(gdb) printf "%d:%s\n", PL_curcop->cop_line, ((XPV*)(*(XPVGV*)PL_curcop->cop_filegv->sv_any)->xgv_gp->gp_sv->sv_any)->xpv_pv
This is with non-threaded perl, you didn't send the output of 'perl -V' as you are being suggested to at http://perl.apache.org/bugs/, so in case your perl is threaded, you will want to run:
(gdb) printf "%d:%s\n", my_perl->Tcurcop->cop_line, my_perl->Tcurcop->cop_file
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html