You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Matty Ronald <ma...@gmail.com> on 2010/03/16 08:33:41 UTC

Help with mod_perl

Hi,

Can any one please tell me how to disable perl's malloc in mod_perl?

I donot want to recompile perl.

Is there any way that i can disable perl's malloc in mod_perl only?

Regards,
Matty

Re: Help with mod_perl

Posted by Perrin Harkins <ph...@gmail.com>.
On Tue, Mar 16, 2010 at 3:33 AM, Matty Ronald <ma...@gmail.com> wrote:
> Can any one please tell me how to disable perl's malloc in mod_perl?
>
> I donot want to recompile perl.
>
> Is there any way that i can disable perl's malloc in mod_perl only?

No, sorry.  Since mod_perl is just embedding your perl in apache, you
have to change your perl to accomplish this.  You do have the option
of compiling a separate perl just for mod_perl to use and keeping your
system perl untouched.  If you want to do that, look at the perl
compile options for setting an install location and then use your
newly built perl to run the mod_perl configuration scripts.

- Perrin