diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-22 13:34:03 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2021-02-22 14:42:06 +0000 |
commit | 301835c2678db80d8eb93e462f3b1832ff91a52b (patch) | |
tree | 87fa1a405412a05cbe62c7fcbcaed33a9422c2b2 /acinclude.m4 | |
parent | Update ChangeLog (diff) | |
download | w3m-301835c2678db80d8eb93e462f3b1832ff91a52b.tar.gz w3m-301835c2678db80d8eb93e462f3b1832ff91a52b.zip |
Disable --with-cafile by default to use OpenSSL default paths
Diffstat (limited to '')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index ded6950..398eb8c 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -537,7 +537,7 @@ if test x"$enable_sslverify" = xyes; then AC_MSG_CHECKING(for CA file location) AC_ARG_WITH(cafile, [ --with-cafile[[=CAFILE]] CA file to verify SSL certificate [[guessed]]],, - [with_cafile=yes]) + [with_cafile=no]) if test x"$with_cafile" = xyes; then for f in /etc/ssl/certs/ca-certificates.crt \ /etc/pki/tls/certs/ca-bundle.crt \ |