modifying @INC at startup and version of perl used

2002-08-29 Thread Jamie . Echlin
Hi, This is probably a luser error as I am quite new to this malarkey, however I have been experimenting for a while without progress now. I need to know how to find out exactly which version of perl mod_perl is configured to use, and if this can be changed as a non-root user, and how to set

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.

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

2002-08-29 Thread Jamie . Echlin
Thanks, but, didn't think i was a beginner... this is more of a mod_perl question because I'm aware of how to set @INC etc for normal perl scripts. Anyway I tried your advice, but, from perldoc perlvar: $] The use of this variable is deprecated and for $^V: Use of uninitialized value at

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:

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

2002-08-29 Thread Jamie . Echlin
Actually I was in the process of reading your very useful piece on how to create a non-root install. Problem is, there is a hell of a lot of FM to read. anyway, ta -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: 29 August 2002 12:01 To: Echlin, Jamie Cc: [EMAIL

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 want