From: Fabian Keil <fk@fabiankeil.de>
Date: Fri, 25 Sep 2020 11:09:49 +0000 (+0200)
Subject: Make it more obvious that the OpenSSL code is also expected to work with LibreSSL
X-Git-Tag: v_3_0_29~81
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/developer-manual/documentation.html?a=commitdiff_plain;h=0e2b9667dfee2ad8e33cf5b8e34cd2c9d75edbb7;p=privoxy.git

Make it more obvious that the OpenSSL code is also expected to work with LibreSSL
---

diff --git a/configure.in b/configure.in
index c542038a..0fa35346 100644
--- a/configure.in
+++ b/configure.in
@@ -1166,14 +1166,14 @@ if test X"$OPT_MBEDTLS" != Xno; then
 fi
 AC_SUBST(FEATURE_HTTPS_INSPECTION_ONLY_MBEDTLS)
 
-dnl ========================================================
-dnl check for OpenSSL which is required for https inspection
-dnl ========================================================
+dnl =================================================================
+dnl check for OpenSSL/LibreSSL which is required for https inspection
+dnl =================================================================
 FEATURE_HTTPS_INSPECTION_ONLY_OPENSSL=#
 OPT_OPENSSL=no
 AC_ARG_WITH(openssl,dnl
-AC_HELP_STRING([--with-openssl], [Enable OpenSSL detection for https inspection.])
-AC_HELP_STRING([--without-openssl], [Disable OpenSSL detection]),
+AC_HELP_STRING([--with-openssl], [Enable OpenSSL/LibreSSL detection for https inspection.])
+AC_HELP_STRING([--without-openssl], [Disable OpenSSL/LibreSSL detection]),
   OPT_OPENSSL=$withval)
 
 if test X"$OPT_OPENSSL" != Xno; then