in reply to Perl5.8.0 and Perl5.8.8 coexists, how to use Perl 5.8.8
Possibly the most convenient way to have multiple concurent versions of Perl available is to create a symlink so that /usr/bin/perl588 points to your Perl 5.8.8 install /new_perl5.8.8_dir/usr/local/bin/perl.
to do the install of CGI::Session into the 5.8.8 version of Perl. All your 5.8.0 stuff remains unchanged so nothing old should break.ln -s /new_perl5.8.8_dir/usr/local/bin/perl /usr/bin/perl588 Then you just need to do #!/usr/bin/perl588 to use it in a script and perl588 Makefile.PL
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl5.8.0 and Perl5.8.8 coexists, how to use Perl 5.8.8
by Argel (Prior) on Dec 14, 2007 at 20:08 UTC |