diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-22 20:31:01 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:14 +0100 |
commit | 04a0e1ffde9451e9cdd9ea1e5276abe9deea7b87 (patch) | |
tree | 4f08d9cda653b29461b43317d3e0265125fa9706 | |
parent | 9ef98b567fbe15208dde5f9aa22cbda99820183b (diff) |
Enable TLS support by default
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index cce917de..b54ece70 100644 --- a/configure.ac +++ b/configure.ac @@ -79,9 +79,9 @@ AC_ARG_ENABLE([xembed], [enable_xembed=yes]) AC_ARG_ENABLE([ssl], - [AS_HELP_STRING([--enable-ssl], [Enable TLS support (for HTTPS)])], + [AS_HELP_STRING([--disable-ssl], [Disable TLS support (for HTTPS)])], [enable_ssl=$enableval], - [enable_ssl=no]) + [enable_ssl=yes]) AC_ARG_WITH([ca-certs-file], [AS_HELP_STRING([--with-ca-certs-file=FILE], [Specify where to find a bundle of trusted CA certificates for TLS])], |