Re: libcrypto linking problem in Leopard

2014-01-06 Thread Appa Rao Mulpuri
Hi Dave, Able to change the path in the Mach O with the Install_name_tool, but while launching the app, it is checking the compatibility version and failing to launch. Here is the Otool output: /usr/lib/libcrypto.0.9.7.dylib (compatibility version 0.9.8, current version 47.2.0) Regards,

Re: libcrypto linking problem in Leopard

2014-01-06 Thread Gary L. Wade
There's lots of hurt trying to support that old. One thing that changed from 10.5 to 10.6 is some linking options so the dylibs are different. I tried to do the same thing you're trying for the sake of cross-platform compatibility, and I found it more resolvable to just factor out those calls

Re: libcrypto linking problem in Leopard

2014-01-03 Thread Jens Alfke
On Jan 2, 2014, at 11:15 PM, Appa Rao Mulpuri appar...@ivycomptech.com wrote: I am using Mac OS X 10.8 SDK for the development and deployment target set to Mac OS 10.5. I am using libcrypto dylib in my code base, application is working fine in all the OS, except in Leopard. Application is

Re: libcrypto linking problem in Leopard

2014-01-03 Thread Jean-Daniel Dupas
Le 3 janv. 2014 à 08:15, Appa Rao Mulpuri appar...@ivycomptech.com a écrit : Hi List, I am using Mac OS X 10.8 SDK for the development and deployment target set to Mac OS 10.5. I am using libcrypto dylib in my code base, application is working fine in all the OS, except in Leopard.

Re: libcrypto linking problem in Leopard

2014-01-03 Thread Charles Srstka
On Jan 3, 2014, at 2:37 AM, Jean-Daniel Dupas devli...@shadowlab.org wrote: The simplest advice is don't use libcrypto. If you just need simple functionality, you may have a look at the CommonCrypto API which is partially available on 10.5 ( I think Digest and Cryptors where available at

Re: libcrypto linking problem in Leopard

2014-01-03 Thread St John, David R
On Jan 3, 2014, at 2:37 AM, Jean-Daniel Dupas devli...@shadowlab.org wrote: The simplest advice is don't use libcrypto. If you just need simple functionality, you may have a look at the CommonCrypto API which is partially available on 10.5 ( I think Digest and Cryptors where available at

libcrypto linking problem in Leopard

2014-01-02 Thread Appa Rao Mulpuri
Hi List, I am using Mac OS X 10.8 SDK for the development and deployment target set to Mac OS 10.5. I am using libcrypto dylib in my code base, application is working fine in all the OS, except in Leopard. Application is failing to launch in Leopard and giving the Library not loaded error.

Re: libcrypto linking problem in Leopard

2014-01-02 Thread Kyle Sluder
On Thu, Jan 2, 2014, at 11:15 PM, Appa Rao Mulpuri wrote: Hi List, I am using Mac OS X 10.8 SDK for the development and deployment target set to Mac OS 10.5. I am using libcrypto dylib in my code base, Do not link directly against libcrypto (nor libssl). Its API is not stable between point