diff options
author | Solitude <solitudesf@protonmail.com> | 2018-11-15 10:04:30 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-11-15 09:04:30 +0100 |
commit | ae36dfb747a8ed4ebd0944fc75ea11676120cb1e (patch) | |
tree | 52bd26622f527c3d3d385de6766a66fdf620dc4b /lib | |
parent | 6e8ed8c6fa8ea43ad2cc2c44008ab7a76984030b (diff) | |
download | Nim-ae36dfb747a8ed4ebd0944fc75ea11676120cb1e.tar.gz |
Add `.46` as supported libssl version (#9704)
Diffstat (limited to 'lib')
-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 e1d36e461..ff05d8aca 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.1|.38|.39|.41|.43|.44|.45|.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|.10|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|)" when defined(macosx): const |