diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2020-10-26 13:03:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 11:03:44 +0100 |
commit | b2740f5c63088c0f0f723086c1742dd057355bf6 (patch) | |
tree | 5155dbe983688fc87c4053c31219bb47dff1384c /lib/wrappers | |
parent | 2ebca5e87e1181498261d5262611a4c7c7738341 (diff) | |
download | Nim-b2740f5c63088c0f0f723086c1742dd057355bf6.tar.gz |
Add support to the latest LibreSSL version (#15715) [backport:1.2] [backport:1.4]
Diffstat (limited to 'lib/wrappers')
-rw-r--r-- | lib/wrappers/openssl.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim index becabad99..694152db1 100644 --- a/lib/wrappers/openssl.nim +++ b/lib/wrappers/openssl.nim @@ -64,9 +64,9 @@ elif useWinVersion: from winlean import SocketHandle else: when defined(osx): - const versions = "(.1.1|.38|.39|.41|.43|.44|.45|.46|.47|.10|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|)" + const versions = "(.1.1|.38|.39|.41|.43|.44|.45|.46|.47|.48|.10|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|)" else: - const versions = "(.1.1|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|.47|.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|.48|.47|.46|.45|.44|.43|.41|.39|.38|.10|)" when defined(macosx): const |