Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Perl 5.8.0 & dyld: perl Undefined symbols' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Perl 5.8.0 & dyld: perl Undefined symbols
Authored by: gdelfino on May 23, '03 11:19:02AM

Is there a problem if I just install the new Perl using CPAN?

sudo perl -MCPAN -e shell

[ Reply to This | # ]
Even easier solution
Authored by: Greg on Jan 20, '04 10:07:25AM

This problem arose on my machine because the PERL5LIB variable
was pointing to a fink source that was no longer needed. So the
fix is to remove this directive completely as follows:

sudo pico /sw/bin/init.csh

then comment out the following lines by placing a # at the beginning

if ( $?PERL5LIB ) then
prepend_path PERL5LIB /sw/lib/perl5:/sw/lib/perl5/darwin
else
setenv PERL5LIB /sw/lib/perl5:/sw/lib/perl5/darwin
endif

Now perl works as expected when you log back into the terminal. Thanks to the previous posters for pointing out the problem.



[ Reply to This | # ]