I want to use Apple's or RedHat's built-in Apache but I want to use Perl 5.10 and mod_perl. What's the least intrusive way to accomplish this? I want the advantage of free security patching for the vendor's Apache, dav, php, etc., but I care a lot about which version of Perl I use and what's in my @INC path. I don't mind compiling my own mod_perl.
|
|
It may be helpful, after step one, to change your path so you don't accidentially get confused about which version of Perl you're using:
|
||||
|
|
|
You'll want to look into mod_so |
||||
|
|
|
I've done this before. It wasn't pretty, but it worked, especially since vendor perl's are usually 2-3 years old. I started with making my own perl RPM that installed perl into a different location, like Next, I grabbed a mod_perl source RPM and modified it to use my It did work, but I'm not an RPM wizard, so dependency checking didn't work out so well. For example, I could uninstall my custom RPM and break everything. It wasn't a big deal for me, so I moved on. I was also mixing RPM's with CPAN installs of modules (did I mention we built our own custom CPAN mirror with our own code?). This was a bit fragile too. Again, I didn't have the resources (ie, time) to figure out how to bend cpan2rpm to use my perl and not cause RPM conflicts. If I had it all to do again, I would make a custom 5.10 perl RPM and just replace the system perl. Then I would use |
||
|
|
