Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I was using a C application which used Perl 5.6.0 without
thread support. Then, I built perl again with thread support.
Now when i try to build my application it says many symbols
are undefined. listed symbols include perl_call_pv,
PL_perl_destruct_level etc..
please help.
rgds,
jay
Sounds like you compiled and installed perl into a different directory then whats in your path, but the libraries that the original perl looks for is in the path (the libraries of the new perl wont work with old perl), you might want to try /usr/local/bin/perl (where newer perl installations are going by default)