- Upstream fix to build libcurl man3 pages * Added patch curl-man3.patch - Disabled test1425 that fails in i586 architecture * Added patch curl-disable-test1427-i586.patch - Update to 7.55.0 Changes: * curl: allow --header and --proxy-header read from file * getinfo: provide sizes as curl_off_t * curl: prevent binary output spewed to terminal * curl: added --request-target * curl: added --socks5-{basic,gssapi}: control socks5 auth * libcurl: added CURLOPT_REQUEST_TARGET * libcurl: added CURLOPT_SOCKS5_AUTH Bugfixes: * Security Fixes: - glob: do not parse after a strtoul() overflow range (CVE-2017-1000101, bsc#1051643) - tftp: reject file name lengths that don't fit (CVE-2017-1000100, bsc#1051644) - file: output the correct buffer to the user (CVE-2017-1000099, bsc#1051645) * includes: remove curl/curlbuild.h and curl/curlrules.h * dist: make the hugehelp.c not get regenerated unnecessarily * timers: store internal time stamps as time_t instead of doubles * progress: let "current speed" be UL + DL speeds combined * http-proxy: do the HTTP CONNECT process entirely non-blocking * lib/curl_setup.h: remove CURL_WANTS_CA_BUNDLE_ENV * fuzz: bring oss-fuzz initial code converted to C89 OBS-URL: https://build.opensuse.org/request/show/515937 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/curl?expand=0&rev=201
32 lines
915 B
Diff
32 lines
915 B
Diff
From f864bd8c880d5a916379aa4f26f1c45fe370b282 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Stenberg <daniel@haxx.se>
|
|
Date: Wed, 9 Aug 2017 10:28:06 +0200
|
|
Subject: [PATCH] build: fix 'make install' with configure, install
|
|
docs/libcurl/* too
|
|
|
|
Broken since d24838d4da9faa
|
|
|
|
Reported-by: Bernard Spil
|
|
---
|
|
Makefile.am | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
Index: curl-7.55.0/Makefile.am
|
|
===================================================================
|
|
--- curl-7.55.0.orig/Makefile.am
|
|
+++ curl-7.55.0/Makefile.am
|
|
@@ -276,11 +276,13 @@ cygwinbin:
|
|
install-data-hook:
|
|
cd include && $(MAKE) install
|
|
cd docs && $(MAKE) install
|
|
+ cd docs/libcurl && $(MAKE) install
|
|
|
|
# We extend the standard uninstall with a custom hook:
|
|
uninstall-hook:
|
|
cd include && $(MAKE) uninstall
|
|
cd docs && $(MAKE) uninstall
|
|
+ cd docs/libcurl && $(MAKE) uninstall
|
|
|
|
ca-bundle: lib/mk-ca-bundle.pl
|
|
@echo "generating a fresh ca-bundle.crt"
|