On Saturday, April 6, 2002, at 11:43 , Robert Brandtjen wrote:
[..]
>> plan A: rebuild perl to be 5.6.0 aware
>>
>> plan B:
>>
>>     PERLLIB=/usr/lib/perl5/5.6.0:/usr/lib/perl5/site_perl/5.6.0
>>     export PERLLIB
>
>
> even after running that i get :
> This is perl, v5.6.1 built for i386-linux

that's the '-v' vice -V ...

or alternatively check with
        perl -e 'print "$_\n" foreach(@INC); '

IF you already have the modules in the directories

                /usr/lib/perl5/5.6.0 and
                /usr/lib/perl5/site_perl/5.6.0

Then you need merely fix the instance of perl itself.

run the Configure and I think what you want to find
is the section

        In order to ease the process of upgrading, this version of perl
        can be configured to use modules built and installed with earlier
        versions of perl that were installed under $prefix.  Specify here
        the list of earlier versions that this version of perl should check.
        If Configure detected no earlier versions of perl installed under
        $prefix, then the list will be empty.  Answer 'none' to tell perl
        to not search earlier versions.

        The default should almost always be sensible, so if you're not sure,
        just accept the default.
        List of earlier versions to include in @INC? [5.6.0]

Since the information will be what gets built into perl itself.

The third course is to do the

        perl -MCPAN -e 'install ....'

after you figure out what you want to download...



ciao
drieux

---


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to