From cdc54bec6f2d27753c1dd2f397ac003b2de67efb Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 20 Jan 2018 17:36:38 +0000 Subject: [PATCH] Add note about OpenSSL 1.0.x support to openssl module. --- lib/wrappers/openssl.nim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim index 70d3887db3..a83e0c9382 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: ##