RE: modifying @INC at startup and version of perl used

2002-08-29 Thread Jesse Erlbaum
Hi Jamie -- > So are you forced to use the version of perl that was chosen when > mod_perl was installed? Guess so, am trying to do a local > non-root install of apache and mod_perl to see if this is so. Yes -- you are bound to use the version of Perl which was compiled into Apache. If you wan

RE: modifying @INC at startup and version of perl used

2002-08-29 Thread Jamie . Echlin
n, Jamie >Cc: [EMAIL PROTECTED] >Subject: Re: modifying @INC at startup and version of perl used > > >[EMAIL PROTECTED] wrote: >[...] > > > > So are you forced to use the version of perl that was chosen when > > mod_perl was installed? Guess so, am trying to do a loca

Re: modifying @INC at startup and version of perl used

2002-08-29 Thread Stas Bekman
[EMAIL PROTECTED] wrote: [...] > So are you forced to use the version of perl that was chosen when > mod_perl was installed? Guess so, am trying to do a local non-root > install of apache and mod_perl to see if this is so. It helps to RTFM: http://perl.apache.org/docs/1.0/guide/install.html#

RE: modifying @INC at startup and version of perl used

2002-08-29 Thread Jamie . Echlin
] [mailto:[EMAIL PROTECTED]] >Sent: 29 August 2002 11:22 >To: Echlin, Jamie >Cc: [EMAIL PROTECTED] >Subject: Re: modifying @INC at startup and version of perl used > > >Jamie, > >Use the perl internal variables to figure out what version >you're running under: $

Re: modifying @INC at startup and version of perl used

2002-08-29 Thread mmaunder
Jamie, Use the perl internal variables to figure out what version you're running under: $] and $^V Use these whether you're running perl or mod_perl. You might want to direct questions relating to perl in general to the perl beginners list. Please see perldoc perlvar for more details. ~mark.