- Update to 8.11.1: * Security fixes: - netrc and redirect credential leak [bsc#1234068, CVE-2024-11053] * Bugfixes: - build: fix ECH to always enable HTTPS RR - cookie: treat cookie name case sensitively - curl-rustls.m4: keep existing 'CPPFLAGS'/'LDFLAGS' when detected - curl: use realtime in trace timestamps - digest: produce a shorter cnonce in Digest headers - docs: document default 'User-Agent' - docs: suggest --ssl-reqd instead of --ftp-ssl - duphandle: also init netrc - hostip: don't use the resolver for FQDN localhost - http_negotiate: allow for a one byte larger channel binding buffer - krb5: fix socket/sockindex confusion, MSVC compiler warnings - libssh: use libssh sftp_aio to upload file - libssh: when using IPv6 numerical address, add brackets - mime: fix reader stall on small read lengths - mk-ca-bundle: remove CKA_NSS_SERVER_DISTRUST_AFTER conditions - mprintf: fix the integer overflow checks - multi: fix callback for 'CURLMOPT_TIMERFUNCTION' not being called again when... - netrc: address several netrc parser flaws - netrc: support large file, longer lines, longer tokens - nghttp2: use custom memory functions - OpenSSL: improvde error message on expired certificate - openssl: remove three "Useless Assignments" - openssl: stop using SSL_CTX_ function prefix for our functions - pytest: add test for use of CURLMOPT_MAX_HOST_CONNECTIONS - rtsp: check EOS in the RTSP receive and return an error code - schannel: remove TLS 1.3 ciphersuite-list support OBS-URL: https://build.opensuse.org/request/show/1230013 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/curl?expand=0&rev=385
27 lines
714 B
Diff
27 lines
714 B
Diff
From 4cc5657247183a0bc3b0969beeaea9acddb09d22 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Stenberg <daniel@haxx.se>
|
|
Date: Wed, 22 May 2024 08:43:43 +0200
|
|
Subject: [PATCH] docs/Makefile.am: make curl-config.1 install
|
|
|
|
on "make install" like it should
|
|
|
|
Follow-up to 60971d665b9b1df87082
|
|
|
|
Closes #13741
|
|
---
|
|
docs/Makefile.am | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/docs/Makefile.am b/docs/Makefile.am
|
|
index 83f5b0c461cc0f..e9ef6284860555 100644
|
|
--- a/docs/Makefile.am
|
|
+++ b/docs/Makefile.am
|
|
@@ -28,6 +28,7 @@ if BUILD_DOCS
|
|
# if we disable man page building, ignore these
|
|
MK_CA_DOCS = mk-ca-bundle.1
|
|
CURLCONF_DOCS = curl-config.1
|
|
+man_MANS = curl-config.1
|
|
endif
|
|
|
|
CURLPAGES = curl-config.md mk-ca-bundle.md
|