Skip to content

Commit

Permalink
Use only versioned libssl soname os OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoCeratto committed Jun 30, 2022
1 parent 62549d1 commit c9cae5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/wrappers/openssl.nim
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ elif useWinVersion:

from winlean import SocketHandle
else:
const versions = "(.1.1|)"
when defined(macosx):
# use only versioned soname
const versions = "(.1.1)"
else:
const versions = "(.1.1|.48|.47|.46|.45|.44|.43|.41|.39|.38|.10|)"

when defined(macosx):
const
Expand Down

0 comments on commit c9cae5e

Please sign in to comment.