summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorSolitude <solitudesf@protonmail.com>2018-11-15 10:04:30 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-11-15 09:04:30 +0100
commitae36dfb747a8ed4ebd0944fc75ea11676120cb1e (patch)
tree52bd26622f527c3d3d385de6766a66fdf620dc4b /lib
parent6e8ed8c6fa8ea43ad2cc2c44008ab7a76984030b (diff)
downloadNim-ae36dfb747a8ed4ebd0944fc75ea11676120cb1e.tar.gz
Add `.46` as supported libssl version (#9704)
Diffstat (limited to 'lib')
-rw-r--r--lib/wrappers/openssl.nim2
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
27'>127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169