summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-02-26 19:19:51 (GMT)
committerBrad King <brad.king@kitware.com>2016-02-29 16:51:04 (GMT)
commit190a5fdffd8104ad613854bdd563a0a11dd88f63 (patch)
tree64020c3fd966169b51cca6404a5c8c68cec8a8cf /Help
parent6b0a664c1639b19ccc652a4be5f9824d0bf88e48 (diff)
downloadCMake-190a5fdffd8104ad613854bdd563a0a11dd88f63.zip
CMake-190a5fdffd8104ad613854bdd563a0a11dd88f63.tar.gz
CMake-190a5fdffd8104ad613854bdd563a0a11dd88f63.tar.bz2
Automatically use OpenSSL by default on Linux and FreeBSD if available
Since https is almost ubiquitous nowadays we should support it by default whenever possible. When building our own curl, we already automatically enable SSL/TLS support on Windows and OS X by using the OS-native APIs. On UNIX platforms we need to use OpenSSL but have not done so by default before, leading to possible user confusion when https transfers fail later. Fix this by searching for OpenSSL quietly and enabling use of it automatically if it is found. Do this only on Linux and FreeBSD for now because on other UNIX platforms (e.g. AIX, HP-UX, SunOS) it seems too easy to find an OpenSSL that is not compatible with the target compiler.
Diffstat (limited to 'Help')
-rw-r--r--Help/release/dev/enable-ssl-automatically.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Help/release/dev/enable-ssl-automatically.rst b/Help/release/dev/enable-ssl-automatically.rst
new file mode 100644
index 0000000..8ded656
--- /dev/null
+++ b/Help/release/dev/enable-ssl-automatically.rst
@@ -0,0 +1,8 @@
+enable-ssl-automatically
+------------------------
+
+* On Linux and FreeBSD platforms, when building CMake itself from source and
+ not using a system-provided libcurl, OpenSSL is now used by default if it is
+ found on the system. This enables SSL/TLS support for commands supporting
+ network communication via ``https``, such as :command:`file(DOWNLOAD)`,
+ :command:`file(UPLOAD)`, and :command:`ctest_submit`.