Skip to content

Instantly share code, notes, and snippets.

@1951FDG
Created October 17, 2013 09:55
Show Gist options
  • Save 1951FDG/c5582f87747d8372b3db to your computer and use it in GitHub Desktop.
Save 1951FDG/c5582f87747d8372b3db to your computer and use it in GitHub Desktop.
OpenSSL backwards compatibility
If a project’s build system references a specific version of OpenSSL, the project may need to be updated. For example, if an Xcode project references “/usr/lib/libcrypto.0.9.7.dylib” or “-lcrypto.0.9.7”, this should be changed to “/usr/lib/libcrypto.dylib” or “-lcrypto” respectively.
sudo ln -sf /Developer/SDKs/MacOSX10.5.sdk/usr/lib/libcrypto.0.9.7.dylib /Developer/SDKs/MacOSX10.6.sdk/usr/lib/libcrypto.0.9.7.dylib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment