diff options
author | Emery Hemingway <emery@vfemail.net> | 2018-06-03 16:39:52 +0200 |
---|---|---|
committer | Emery Hemingway <emery@vfemail.net> | 2018-06-07 07:21:31 +0200 |
commit | 5e54cd9fc9ce21311a4991f550e420f5bf1bd726 (patch) | |
tree | 00b0c058ebec00b084e04e25dc24a7a82884afa9 /lib/wrappers | |
parent | 22f714585b943d0b2457c66a78917113072f4503 (diff) | |
download | Nim-5e54cd9fc9ce21311a4991f550e420f5bf1bd726.tar.gz |
Set Genode Openssl shared-object strings
Diffstat (limited to 'lib/wrappers')
-rw-r--r-- | lib/wrappers/openssl.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim index a24575d11..de3bfa616 100644 --- a/lib/wrappers/openssl.nim +++ b/lib/wrappers/openssl.nim @@ -44,6 +44,10 @@ else: const DLLSSLName* = "libssl" & versions & ".dylib" DLLUtilName* = "libcrypto" & versions & ".dylib" + elif defined(genode): + const + DLLSSLName* = "libssl.lib.so" + DLLUtilName* = "libcrypto.lib.so" else: const DLLSSLName* = "libssl.so" & versions |