[OSX] Try to seek homebrew installation of openssl, fixes #76 #146

Merged
siuying merged 1 commits from homebrew into master 2013-05-14 17:56:11 +02:00
Showing only changes of commit a041d48375 - Show all commits

View File

@ -413,6 +413,10 @@ except:
except:
try:
OpenSSL = _OpenSSL('libcrypto.dylib')
except:
try:
# try homebrew installation
OpenSSL = _OpenSSL('/usr/local/opt/openssl/lib/libcrypto.dylib')
except:
try:
from os import path