1826398 Members
3633 Online
109692 Solutions
New Discussion

Perl Lib on HP-UX 10.2

 
JI HUI
Frequent Advisor

Perl Lib on HP-UX 10.2

Two different version of perl installed at a HP-UX 10.2 server. 5.004_04 and 5.004_01. Question:
Is there any way to tell I am using the right lib? How to check the lib is for 5.004_04? (Mistake might be made so that new lib might be overwritten by the old lib file)

thank you
Nothing is everything
2 REPLIES 2
Eduardo Uribe_1
Occasional Advisor

Re: Perl Lib on HP-UX 10.2

I supoused you have both versions of perl installed in different directories.

If so, the answer is as easy as checking wich of them is set to your SHLIB_PATH system variable.
Set it to the ./lib directory in wich you have the desired version installed and that's it.

If not so, you can always move the derired lib to a differrent directory and add it to the SHLIB_PATH before the shared perl 'lib' directory.

Ed.
JI HUI
Frequent Advisor

Re: Perl Lib on HP-UX 10.2

Thank you.

Actually, I am facing the problem that the libs are in the same directory and I am not sure which version it is.
Nothing is everything