diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2018-01-20 17:36:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-20 17:36:38 +0000 |
commit | cdc54bec6f2d27753c1dd2f397ac003b2de67efb (patch) | |
tree | c126ca24f74f7e13643afc0a59a71e03571fa2ad /lib | |
parent | 588173496a592c58b0784d87d14b10a4487d41ae (diff) | |
download | Nim-cdc54bec6f2d27753c1dd2f397ac003b2de67efb.tar.gz |
Add note about OpenSSL 1.0.x support to openssl module.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wrappers/openssl.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim index 70d3887db..a83e0c938 100644 --- a/lib/wrappers/openssl.nim +++ b/lib/wrappers/openssl.nim @@ -12,7 +12,9 @@ ## When OpenSSL is dynamically linked, the wrapper provides partial forward and backward ## compatibility for OpenSSL versions above and below 1.1.0 ## -## OpenSSL can be also statically linked using dynlibOverride:ssl for OpenSSL >= 1.1.0 +## OpenSSL can also be statically linked using ``--dynlibOverride:ssl`` for OpenSSL >= 1.1.0. +## If you want to statically link against OpenSSL 1.0.x, you now have to +## define the ``openssl10`` symbol via ``-d:openssl10``. ## ## Build and test examples: ## |