i believe it is originally defined at compile time.
do a:
perl -V
and it will show you the compiled in perl lib locations..
you can place this at the top of your code b4 the other use directives:
use lib "/u/richm/QXZ-OSF/nsPerl5.005_03/lib/alpha-dec-osf.../webmaster/apache_1.3.19";
and it will add this to the library list for the runtime of the routine it is used in.
or u can try this (i haven't - so may the force be with u):
cd /u/richm/QXZ-OSF/nsPerl5.005_03/lib/alpha-dec-osf.../webmaster && ln -s apache
apache_1.3.19
hth,
--
___cliff [EMAIL PROTECTED]http://www.genwax.com/
Henri Delebecque wrote:
> hello,
>
> I'm a mod_perl newbie, trying to install it on an apache server
> on a Digital-Unix platform.
>
> I have succeded, with problems, to make a mod_perl lib.
> Unfortunately, when I launch the apache server, it fails with
> an error message telling that it can't locate Apache.pm in @INC.
> More strangely, it says that @INC contains
> /u/richm/QXZ-OSF/nsPerl5.005_03/lib/alpha-dec-osf.../webmaster/apache,
> when the apache dierctory is in fact /webmaster/apache_1.3.19
> (the /webmaster/apache is the operationnal version of the server)
>
> I think that something has not been set during the make phase.
> any hints ?
>