diff options
author | genotrance <dev@genotrance.com> | 2019-01-08 23:24:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 23:24:45 -0600 |
commit | def477acb79f79e97e883f6c99a7aee16964e92a (patch) | |
tree | 70bf5e463624a3f2cfecc85555c276c336989ae6 /lib/wrappers/openssl.nim | |
parent | 6ce3949c8aa489d268f272829d03edab175bfc7a (diff) | |
parent | 21078798ead6f6ba107102913cd26970ef957e9d (diff) | |
download | Nim-def477acb79f79e97e883f6c99a7aee16964e92a.tar.gz |
Merge pull request #10236 from treeform/passSSLPath
Fix libssl order. Newest one is 1.1
Diffstat (limited to 'lib/wrappers/openssl.nim')
-rw-r--r-- | lib/wrappers/openssl.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim index 68f0d8eb2..447592a68 100644 --- a/lib/wrappers/openssl.nim +++ b/lib/wrappers/openssl.nim @@ -38,7 +38,7 @@ when useWinVersion: from winlean import SocketHandle else: - const versions = "(.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|.1.1|.46|.45|.44|.43|.41|.39|.38|.10|)" + const versions = "(.1.1|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|.46|.45|.44|.43|.41|.39|.38|.10|)" when defined(macosx): const |