Update location of bundled OpenSSL on macOS

This commit is contained in:
shortcutme 2019-10-24 12:22:54 +02:00
parent dac4fcd52b
commit 28d4fc5d12
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ class Config(object):
def __init__(self, argv): def __init__(self, argv):
self.version = "0.7.1" self.version = "0.7.1"
self.rev = 4243 self.rev = 4244
self.argv = argv self.argv = argv
self.action = None self.action = None
self.pending_changes = {} self.pending_changes = {}

View file

@ -20,7 +20,7 @@ def getOpensslPath():
else: else:
lib_paths = [ lib_paths = [
"../runtime/lib/libcrypto.so.1.1", # ZeroBundle Linux "../runtime/lib/libcrypto.so.1.1", # ZeroBundle Linux
"../lib/libcrypto.1.1.dylib", # ZeroBundle macOS "../../Frameworks/libcrypto.1.1.dylib", # ZeroBundle macOS
"/opt/lib/libcrypto.so.1.0.0", # For optware and entware "/opt/lib/libcrypto.so.1.0.0", # For optware and entware
"/usr/local/ssl/lib/libcrypto.so" "/usr/local/ssl/lib/libcrypto.so"
] ]