diff options
author | Andre von Houck <starplant@gmail.com> | 2019-01-08 10:29:10 -0800 |
---|---|---|
committer | Andre von Houck <starplant@gmail.com> | 2019-01-08 10:30:22 -0800 |
commit | 21078798ead6f6ba107102913cd26970ef957e9d (patch) | |
tree | e7d4b9efccf115405123838a56edfb5b96908d45 /lib/wrappers | |
parent | d0366c519487610ff26d28175e98a9c3ef178670 (diff) | |
download | Nim-21078798ead6f6ba107102913cd26970ef957e9d.tar.gz |
Fix libssl order. Newest one is 1.1
Diffstat (limited to 'lib/wrappers')
-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 |