summary refs log tree commit diff stats
path: root/lib/wrappers/openssl.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-02-09 16:47:30 +0100
committerAraq <rumpf_a@web.de>2018-02-09 16:47:30 +0100
commit7b2b0ebf7fc7c6276f973f82424f7328823e221c (patch)
tree7ac282c0b1cf2edccd6092723d1a990a9abbef6f /lib/wrappers/openssl.nim
parentb565c0234ca18d6a77ad28db481fbbd09548f3be (diff)
downloadNim-7b2b0ebf7fc7c6276f973f82424f7328823e221c.tar.gz
OpenSSL: 32bit DLL names on Windows lack the -x32 suffix
Diffstat (limited to 'lib/wrappers/openssl.nim')
-rw-r--r--lib/wrappers/openssl.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim
index ca46a300e..eefc09cb9 100644
--- a/lib/wrappers/openssl.nim
+++ b/lib/wrappers/openssl.nim
@@ -33,8 +33,8 @@ when useWinVersion:
       DLLUtilName* = "(libcrypto-1_1-x64|libeay64).dll"
   else:
     const
-      DLLSSLName* = "(libssl-1_1-x32|ssleay32|libssl32).dll"
-      DLLUtilName* =  "(libcrypto-1_1-x32|libeay32).dll"
+      DLLSSLName* = "(libssl-1_1|ssleay32|libssl32).dll"
+      DLLUtilName* =  "(libcrypto-1_1|libeay32).dll"
 
   from winlean import SocketHandle
 else: