Help with mod_perl
am 16.03.2010 08:33:41 von Matty Ronald
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
am 16.03.2010 17:46:25 von Perrin Harkins
On Tue, Mar 16, 2010 at 3:33 AM, Matty Ronald 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