c892795e | 10-Jul-2018 |
Ruslan Baratov |
CMake: Respect BUILD_SHARED_LIBS Use standard CMake variable BUILD_SHARED_LIBS instead of introducing custom option CURL_STATICLIB. Use '-DBUILD_SHARED_LIBS=%SHARED%' in appveyo
CMake: Respect BUILD_SHARED_LIBS Use standard CMake variable BUILD_SHARED_LIBS instead of introducing custom option CURL_STATICLIB. Use '-DBUILD_SHARED_LIBS=%SHARED%' in appveyor.yml. Reviewed-by: Sergei Nikulov Closes #2755
show more ...
|
f826b4ce | 19-Jul-2018 |
John Butterfield |
cmake: bumped minimum version to 3.4 Closes #2753 |
7867aaa9 | 17-Jul-2018 |
John Butterfield |
cmake: link curl to the OpenSSL targets instead of lib absolute paths Reviewed-by: Jakub Zakrzewski Reviewed-by: Sergei Nikulov Closes #2753 |
537763f7 | 07-Aug-2018 |
Daniel Stenberg |
travis: build darwinssl on macos 10.12 ... as building on 10.13.x before 10.13.4 leads to link errors. Assisted-by: Nick Zitzmann Fixes #2835 Closes #2845 |
8bab3e2e | 03-Aug-2018 |
Daniel Stenberg |
DEPRECATE: remove release date from 7.62.0 Since it will slip and the version is the important part there, not the date. |
7279c47f | 02-Aug-2018 |
Daniel Stenberg |
lib/Makefile: only do symbol hiding if told to This restores the ability to build a static lib with --disable-symbol-hiding to keep non-curl_ symbols. Researched-by: Dan Fandric
lib/Makefile: only do symbol hiding if told to This restores the ability to build a static lib with --disable-symbol-hiding to keep non-curl_ symbols. Researched-by: Dan Fandrich Reported-by: Ran Mozes Fixes #2830 Closes #2831
show more ...
|
81be2548 | 02-Aug-2018 |
Marcel Raad |
hostip: fix unused variable warning addresses is only used in an infof call, which is a macro expanding to nothing if CURL_DISABLE_VERBOSE_STRINGS is set. |
b7bdf210 | 01-Aug-2018 |
Daniel Stenberg |
test1307: disabled Turns out that since we're using the native fnmatch function now when available, and they simply disagree on a huge number of test patterns that make it hard to te
test1307: disabled Turns out that since we're using the native fnmatch function now when available, and they simply disagree on a huge number of test patterns that make it hard to test this function like this... Fixes #2825
show more ...
|
45d45275 | 01-Aug-2018 |
Daniel Stenberg |
smb: don't mark it done in smb_do Follow-up to 09e401e01bf9. The SMB protocol handler needs to use its doing function too, which requires smb_do() to not mark itself as done...
smb: don't mark it done in smb_do Follow-up to 09e401e01bf9. The SMB protocol handler needs to use its doing function too, which requires smb_do() to not mark itself as done... Closes #2822
show more ...
|
276644ca | 31-Jul-2018 |
Rikard Falkeborn |
general: fix printf specifiers Closes #2818 |
6377da72 | 31-Jul-2018 |
Daniel Stenberg |
RELEASE-NOTES: synced |
21b305da | 31-Jul-2018 |
Daniel Stenberg |
mailmap: Daniel Jelinski |
1836d59e | 26-Jul-2018 |
Harry Sintonen |
HTTP: Don't attempt to needlessly decompress redirect body This change fixes a regression where redirect body would needlessly be decompressed even though it was to be ignored anyway. As
HTTP: Don't attempt to needlessly decompress redirect body This change fixes a regression where redirect body would needlessly be decompressed even though it was to be ignored anyway. As it happens this causes secondary issues since there appears to be a bug in apache2 that it in certain conditions generates a corrupt zlib response. The regression was created by commit: dbcced8e32b50c068ac297106f0502ee200a1ebd Discovered-by: Harry Sintonen Closes #2798
show more ...
|
e78f2cfe | 30-Jul-2018 |
Daniel Stenberg |
curl: use Content-Disposition before the "URL end" for -OJ Regression introduced in 7.61.0 Reported-by: Thomas Klausner Fixes #2783 Closes #2813 |
d6cf9301 | 30-Jul-2018 |
Daniel Jelinski |
retry: return error if rewind was necessary but didn't happen Fixes #2801 Closes #2812 |
c3b29746 | 29-Jul-2018 |
Daniel Stenberg |
http2: clear the drain counter in Curl_http2_done Reported-by: Andrei Virtosu Fixes #2800 Closes #2809 |
09e401e0 | 29-Jul-2018 |
Daniel Stenberg |
smb: fix memory leak on early failure ... by making sure connection related data (->share) is stored in the connection and not in the easy handle. Detected by OSS-fuzz Bug:
smb: fix memory leak on early failure ... by making sure connection related data (->share) is stored in the connection and not in the easy handle. Detected by OSS-fuzz Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9369 Fixes #2769 Closes #2810
show more ...
|
fe60cbfb | 30-Jul-2018 |
Daniel Stenberg |
travis: run a 'make checksrc' too ... to make sure the examples are all checked. Closes #2811 |
08983314 | 29-Jul-2018 |
Jay Satiro |
examples/ephiperfifo: checksrc compliance |
3db62836 | 29-Jul-2018 |
Michael Kaufmann |
sws: handle EINTR when calling select() Closes https://github.com/curl/curl/pull/2808 |
ea6f5769 | 29-Jul-2018 |
Daniel Stenberg |
test1157: follow-up to 35ecffb9 Ignore the user-agent line. Pointed-out-by: Marcel Raad |
4f223593 | 29-Jul-2018 |
Michael Kaufmann |
tests/http_pipe.py: Use /usr/bin/env to find python |
1fb8048a | 28-Jul-2018 |
Daniel Stenberg |
TODO: Support Authority Information Access certificate extension (AIA) Closes #2793 |
10061f47 | 28-Jul-2018 |
Daniel Stenberg |
conn_free: updated comment to clarify Let's call it disassociate instead of disconnect since the latter term is used so much for (TCP) connections already. |
35ecffb9 | 28-Jul-2018 |
Daniel Stenberg |
test1157: test -H from empty file Verifies bugfix #2797 |