Pedro Monreal Gonzalez
6c4ee5ecf7
* Security fixes: - [bsc#1227888, CVE-2024-6197] curl: freeing stack buffer in utf8asn1str - [bsc#1228260, CVE-2024-6874] idn: tweak buffer use when converting with macidn * Changes: - curl: add --ip-tos (IP Type of Service / Traffic Class) - curl: add --mptcp - curl: add --vlan-priority - curl: add -w '%{num_retries} - gnutls: support CA caching - mbedtls: support CURLOPT_CERTINFO - noproxy: patterns need to be comma separated - socket: support binding to interface *AND* IP - tcpkeepalive: add CURLOPT_TCP_KEEPCNT and --keepalive-cnt - urlapi: add CURLU_NO_GUESS_SCHEME - wolfssl: support CA caching * Bugfixes: - connection: shutdown TLS (for FTP) better - curl-config: revert to backticks to support old target envs - curl: allow etag and content-disposition for 3xx reply - curl: bsearch the --write-out variable name - curl: check for --disable case *sensitively* - doh: fix leak and zero-length HTTPS RR crash - file: separate fake headers and body with a stand-alone CRLF - ftp: remove redundant null pointer check in loop condition - gnutls: improve TLS shutdown - gnutls: pass in SNI name, not hostname when checking cert - hostip: skip error check for infallible function call OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/curl?expand=0&rev=371
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
|