Hello everybody!
My intention is to have thread support in Perl, reding through CPAN I must have a Perl version compiled with support to threads. I made a script and I have the following output
This Perl hasn't been configured and built properly for the threads module to work. (The 'useithreads' configuration option hasn't been used.)
So I download the last version of Perl and compile it again with thread support, with the following commands
rm -rf config.sh Policy.sh
sh Configure -de -Dusethreads
make
make test
make install
I have the following questions
1. Doing that, how do I use the new perl binary 5.8.5 instead of the old 5.8.0?
I believe that /usr/local/bin/perl is pointing to the older version instead of the newer
thanks in advanced
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>