Re: recompiling perl

2016-05-18 Thread Steven Lembark
On Tue, 10 May 2016 09:13:27 -0500 Hiram Gibbard wrote: > If I want to recompile the mod_perl module so that it points to a custom > Perl location, is it as simply as editing the following line: > #!/usr/bin/perl -w Better off using the path to locate perl: #!/bin/env perl will do this o

Re: recompiling perl

2016-05-10 Thread Perrin Harkins
Rather than trying to mess with an existing RPM, I'd suggest you build from source. When you run mod_perl's Makefile.PL, run it with the perl binary you want to build against. - Perrin On Tue, May 10, 2016 at 10:13 AM, Hiram Gibbard wrote: > Hi All, > > If I want to recompile the mod_perl modu

Re: recompiling perl

2016-05-10 Thread Ruben Safir
On 05/10/2016 10:13 AM, Hiram Gibbard wrote: > Hi All, > To build mod_perl To use it, that might depend on the modules itself. > If I want to recompile the mod_perl module so that it points to a custom > Perl location, is it as simply as editing the following line: > #!/usr/bin/perl -w > > in

recompiling perl

2016-05-10 Thread Hiram Gibbard
Hi All, If I want to recompile the mod_perl module so that it points to a custom Perl location, is it as simply as editing the following line: #!/usr/bin/perl -w in the following file? rpmbuild/SOURCES/mod_perl-2.0.4/build/config.pl basically I want mod_perl to use a Perl library that is isola