summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorHannes Mezger <hannes.mezger@ascolab.com>2014-11-28 14:21:53 (GMT)
committerBrad King <brad.king@kitware.com>2014-12-01 14:41:46 (GMT)
commitbe9bec5df2660661984e080dad9ae7561aa1fe83 (patch)
tree0d9b1c1812fde80a1406570ac170f7e469452f74 /Help
parent8e75f1d2fa3049ac31f4ebdbc255fca3e6414802 (diff)
downloadCMake-be9bec5df2660661984e080dad9ae7561aa1fe83.zip
CMake-be9bec5df2660661984e080dad9ae7561aa1fe83.tar.gz
CMake-be9bec5df2660661984e080dad9ae7561aa1fe83.tar.bz2
FindOpenSSL: Report crypto and ssl libraries separately
Some applications only need the OpenSSL crypto library and want to avoid linking against the SSL library. Set OPENSSL_CRYPTO_LIBRARY and OPENSSL_SSL_LIBRARY in the code paths that do not need to find them separately, and document them publicly. This allows applications to be more specific when linking against OpenSSL.
Diffstat (limited to 'Help')
-rw-r--r--Help/release/dev/FindOpenSSL-separate-libs.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/release/dev/FindOpenSSL-separate-libs.rst b/Help/release/dev/FindOpenSSL-separate-libs.rst
new file mode 100644
index 0000000..96e3961
--- /dev/null
+++ b/Help/release/dev/FindOpenSSL-separate-libs.rst
@@ -0,0 +1,7 @@
+FindOpenSSL-separate-libs
+-------------------------
+
+* The :module:`FindOpenSSL` module now reports ``crypto`` and ``ssl``
+ libraries separately in ``OPENSSL_CRYPTO_LIBRARY`` and
+ ``OPENSSL_SSL_LIBRARY``, respectively, to allow applications to
+ link to one without the other.