You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Doug MacEachern <do...@covalent.net> on 2000/04/01 00:28:11 UTC

Re: mod_perl (DSO) dumping core with perl 5.6.0

On Fri, 31 Mar 2000, Paul G. Weiss wrote:

> Please help.  I've tried many things. I'm building this on
> Solaris 2.6.
> 
> I'm tring to get mod_perl (1.22) to load as a DSO.  It is dieing as
> follows:

that's a shame, Perl 5.005_56-ish worked fine as a dso under solaris.
mod_perl's Makefile.PL tries to suggest alternatives, you'll have to
choose one of these (ignoring #2) for the moment:

    if (($USE_DSO or $USE_APXS) and $] < 5.005_56 and 
	$^O eq 'solaris' and $Config{'usemymalloc'} eq 'y') 
      {
	  phat_warn(<<EOF);
Your current configuration will most likely trigger core dumps,
suggestions:
   *) Do not configure mod_perl as a DSO
   *) Upgrade your Perl version to 5.005_56 or higher
   *) Configure Perl with -Uusemymalloc
   *) Switch to an os other than $^O
EOF
      }