Thursday, September 16, 2010

Perl Library bindings messed up in mac os x (Library not loaded - dyld: Library not loaded)

I was searching this info for the last 2 days stuck! I had 2 problems.

1. my cdrecord (installed via ports) failed to launch - giving me this error:

[09/16/10:18:31][phudi:~]$ cdrecord -scanbus
dyld: Library not loaded: /opt/local/lib/libgcc_s.1.dylib
  Referenced from: /opt/local/bin/cdrecord
  Reason: image not found
Trace/BPT trap

2. perl would give error on the SSLeasy

[09/16/10:18:31][phudi:~]$ perl ygrid_newnode.pl
Can't load '/opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/Net/SSLeay/SSLeay.bundle' for module Net::SSLeay: dlopen(/opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/Net/SSLeay/SSLeay.bundle, 1): Library not loaded: /opt/local/lib/libssl.0.9.8.dylib

Both of them was working!!

now #1 was solved via reinstalling cdrtools
why was the error? cdrtools was src installed and hence was referencing a ssl library which got upgraded with port selfupdate. So the lesson is not to src install, do a port install

#2 again the sslleasy libraries were built with system openssl library which is 0.9.8 while when I did a port selfupdate the ports openssl was upgraded to openssl-1.0.0 - which means running a 'perl -MCPAN -e shell' is a big no no. Install via ports :-)

delete /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level and reinstall via ports?
sudo port install p5-net-ssleay

hope this helps.

List directories via 'ls -d' - surprised me

List directories via 'ls -d' - surprised me This was one of those feelings where I was left surprised with the humble linux comm...