Hello all!
> As Angus already write, a stack back trace would be the best. In short do
>
> gdb /path/to/httpd
> set args -f /your/httpd.conf -X
> r
> -> you get the segfault
> BT
> you see the backtrace
>
> before doing this compile EMbperl with debug symbols:
>
> perl Makefile.PL debug
> make
Oh right, I didn't realise that.
The only reason I'm using Embperl subroutines is that I want to import a bunch of
common routines, like so:
Execute ({ inputfile => 'share.epl', import => 1 });
However this didn't import perl subroutines, so I switched over to Embperl subroutines
instead.