I was able to build mod_perl.so . But I noticed that "make install" copies whole bunch of perl modules under non-apache directories.
My question, 1. Is it possible to build it such that I don't have to run make install on every web server? Is there a way to build mod_perl that contains everything including perl modules? This will help in install and keeping track of mod_perl in only one place. 2. Also, is it possible to Keep all the install modules and files local to apache install directory instead of having to create perl modules 3. Is it possible to deploy the modules that I create local to apache install directory? Currently I found one of the paths from @INC and created module there. But the problem is that we have too many webservers and install is going to be a problem. 4. Is there a way to dynamically change perl module without having to stop or start apache?