Steve Holme [Fri, 14 Nov 2014 20:43:15 +0000 (20:43 +0000)]
ntlm: We prefer 'CURLcode result'
Brad King [Mon, 10 Nov 2014 18:56:10 +0000 (19:56 +0100)]
CMake: Restore order-dependent library checks
Revert commit
2257deb502 (Cmake: Avoid cycle directory dependencies,
2014-08-22) and add a comment explaining the purpose of the original
code.
The check_library_exists_concat macro is intended to be called multiple
times on a sequence of possibly dependent libraries. Later libraries
may depend on earlier libraries when they are static. They cannot be
safely linked in reverse order on some platforms.
Signed-off-by: Brad King <brad.king@kitware.com>
Brad King [Mon, 10 Nov 2014 18:56:09 +0000 (19:56 +0100)]
CMake: Restore order-dependent header checks
Revert commit
1269df2e3b (Cmake: Don't check for all headers each
time, 2014-08-15) and add a comment explaining the purpose of the
original code.
The check_include_file_concat macro is intended to be called multiple
times on a sequence of possibly dependent headers. Later headers
may depend on earlier headers to provide declarations. They cannot
be safely included independently on some platforms.
For example, many POSIX APIs document including sys/types.h before some
other headers. Also on some OS X versions sys/socket.h must be included
before net/if.h or the check for the latter will fail.
Signed-off-by: Brad King <brad.king@kitware.com>
Peter Wu [Thu, 13 Nov 2014 22:06:44 +0000 (23:06 +0100)]
test22: expand a backtick command
This is the only user of the backtick operator in the command. As the
commands will soon not be executed by a shell anymore (but by perl),
replace the command with its output.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Daniel Stenberg [Thu, 13 Nov 2014 15:02:52 +0000 (16:02 +0100)]
RELEASE-NOTES: synced with
2ee3c63b13
Daniel Stenberg [Thu, 13 Nov 2014 14:39:15 +0000 (15:39 +0100)]
http2: fix switched macro when http2 is not enabled
Tatsuhiro Tsujikawa [Wed, 12 Nov 2014 17:07:24 +0000 (02:07 +0900)]
http2: Deal with HTTP/2 data inside response header buffer
Previously if HTTP/2 traffic is appended to HTTP Upgrade response header
(thus they are in the same buffer), the trailing HTTP/2 traffic is not
processed and lost. The appended data is most likely SETTINGS frame.
If it is lost, nghttp2 library complains server does not obey the HTTP/2
protocol and issues GOAWAY frame and curl eventually drops connection.
This commit fixes this problem and now trailing data is processed.
Steve Holme [Tue, 11 Nov 2014 00:04:05 +0000 (00:04 +0000)]
configure: Fixed inclusion of krb5 when CURL_DISABLE_CRYPTO_AUTH is defined
Commit
fe0f8967bf fixed a problem with krb5 not being defined as a
supported feature when HAVE_GSSAPI is defined, however, it should
only be included if CURL_DISABLE_CRYPTO_AUTH is not set, like when
SPNEGO is listed as a feature.
Daniel Stenberg [Mon, 10 Nov 2014 09:09:40 +0000 (10:09 +0100)]
multi: removed Curl_multi_set_easy_connection
It isn't used anywhere!
Reported-by: Carlo Wood
Peter Wu [Thu, 6 Nov 2014 00:32:46 +0000 (01:32 +0100)]
symbol-scan.pl: do not require autotools
Makes test1119 pass when building with cmake.
configurehelp.pm is generated by configure (autotools). As cmake does
not provide a separate variable for the C preprocessor, default to cpp.
Before commit
ef24ecde68a5f577a7f0f423a767620f09a0ab16 ("symbol-scan:
use configure script knowledge about how to run the C preprocessor"),
this tool would also use 'cpp'.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Peter Wu [Thu, 6 Nov 2014 00:32:45 +0000 (01:32 +0100)]
cmake: add ENABLE_THREADED_RESOLVER, rename ARES
Fix detection of the AsynchDNS feature which not just depends on
pthreads support, but also on whether USE_POSIX_THREADS is set or not.
Caught by test 1014.
This patch adds a new ENABLE_THREADED_RESOLVER option (corresponding to
--enable-threaded-resolver of autotools) which also needs a check for
HAVE_PTHREAD_H.
For symmetry with autotools, CURL_USE_ARES is renamed to ENABLE_ARES
(--enable-ares). Checks that test for the availability actually use
USE_ARES instead as that is the result of whether a-res is available or
not (in practice this does not matter as CARES is marked as required
package, but nevertheless it is better to write the intent).
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Peter Wu [Thu, 6 Nov 2014 00:32:44 +0000 (01:32 +0100)]
cmake: build libhostname for test suite
Used by some test cases via LD_PRELOAD in order to fake the host name.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Peter Wu [Thu, 6 Nov 2014 00:32:43 +0000 (01:32 +0100)]
cmake: fix HAVE_GETHOSTNAME definition
Otherwise Curl_gethostname always fails. Windows has gethostname
since Vista according to
http://msdn.microsoft.com/en-us/library/ms738527%28VS.85%29.aspx, but
accordings to byte_bucket's VC 2005 documentation, it is available even
in Windows 95. (possibly after installing a Platform SDK, the
Windows Server 2003 SP1 Platform SDK should be sufficient).
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Peter Wu [Thu, 6 Nov 2014 00:32:42 +0000 (01:32 +0100)]
tests: fix libhostname visibility
I noticed that a patched cmake build would pass tests with a fake local
hostname, but the autotools build skips them:
got unexpected host name back, LD_PRELOAD failed
It turns out that -fvisibility=hidden hides the symbol, and since the
tests are not part of libcurl, it fails too. Just remove the LIBCURL
guard.
Broken since cURL 7.30 (commit
83a42ee20ea7fc25abb61c0b7ef56ebe712d7093,
"curl.h: stricter CURL_EXTERN linkage decorations logic").
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Peter Wu [Thu, 6 Nov 2014 00:32:41 +0000 (01:32 +0100)]
tests: fix memleak in server/resolve.c
This makes LeakSanitizer happy.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Daniel Stenberg [Mon, 10 Nov 2014 08:05:56 +0000 (09:05 +0100)]
configure: assume krb5 when gss-api works
To please test 1014 while we work out if this is truly the a correct
assumption.
Steve Holme [Sun, 9 Nov 2014 18:09:58 +0000 (18:09 +0000)]
vtls.h: Fixed compiler warning when compiled without SSL
vtls.c:185:46: warning: unused parameter 'data'
Steve Holme [Sun, 9 Nov 2014 15:30:01 +0000 (15:30 +0000)]
RELEASE-NOTES: Synced with
2fbf23875f
Steve Holme [Sun, 9 Nov 2014 15:12:56 +0000 (15:12 +0000)]
ntlm: Added separate SSPI based functions
In preparation for moving the NTLM message code into the SASL module,
and separating the native code from the SSPI code, added functions that
simply call the functions in curl_ntlm_msg.c.
Steve Holme [Sun, 9 Nov 2014 14:55:41 +0000 (14:55 +0000)]
http_ntlm: Use the SASL functions instead
In preparation for moving the NTLM message code into the SASL module
use the SASL functions in the HTTP code instead.
Daniel Stenberg [Sun, 9 Nov 2014 14:42:12 +0000 (15:42 +0100)]
libssh2: detect features based on version, not configure checks
... so that non-configure builds get the correct functions too based on
the libssh2 version used.
Nobuhiro Ban [Sun, 9 Nov 2014 14:30:06 +0000 (15:30 +0100)]
SSH: use the port number as well for known_known checks
... if the libssh2 version is new enough.
Bug: http://curl.haxx.se/bug/view.cgi?id=1448
Steve Holme [Sun, 9 Nov 2014 14:19:50 +0000 (14:19 +0000)]
INSTALL: Updated pre-processor references to the old VC6 project files
Reworked the two sections that discuss modifying the Visual Studio pre-
processor settings, and vc6libcurl.dsw/vc6libcurl.dsp, to remove the
project files references as they have been superseded by a more thorough
set of project files for VC6 through VC12, but to also give the correct
reference to this setting in later versions of Visual Studio.
Steve Holme [Sun, 9 Nov 2014 13:35:08 +0000 (13:35 +0000)]
INSTALL: Added email protocols to the "Disabling in Win32 builds" section
Steve Holme [Sun, 9 Nov 2014 12:58:07 +0000 (12:58 +0000)]
configure: Fixed NTLM missing from features when CURL_DISABLE_HTTP defined
Steve Holme [Sun, 9 Nov 2014 12:46:00 +0000 (12:46 +0000)]
build: Fixed no NTLM support for email when CURL_DISABLE_HTTP is defined
USE_NTLM would only be defined if: HTTP support was enabled, NTLM and
cryptography weren't disabled, and either a supporting cryptography
library or Windows SSPI was being compiled against.
This means it was not possible to build libcurl without HTTP support
and use NTLM for other protocols such as IMAP, POP3 and SMTP. Rather
than introduce a new SASL pre-processor definition, removed the HTTP
prerequisite just like USE_SPNEGO and USE_KRB5.
Note: Winbind support still needs to be dependent on CURL_DISABLE_HTTP
as it is only available to HTTP at present.
This bug dates back to August 2011 when I started to add support for
NTLM to SMTP.
Steve Holme [Sun, 9 Nov 2014 11:34:36 +0000 (11:34 +0000)]
ntlm: Removed an unnecessary free of native Target Info
Due to commit
40ee1ba0dc the free in Curl_ntlm_decode_type2_target() is
longer required.
Steve Holme [Sun, 9 Nov 2014 11:25:10 +0000 (11:25 +0000)]
ntlm: Moved the native Target Info clean-up from HTTP specific function
Steve Holme [Thu, 9 Oct 2014 10:03:14 +0000 (11:03 +0100)]
ntlm: Moved SSPI clean-up code into SASL module
Steve Holme [Sat, 8 Nov 2014 18:27:54 +0000 (18:27 +0000)]
Makefile.dist: Added support for WinIDN
Steve Holme [Sat, 8 Nov 2014 17:47:08 +0000 (17:47 +0000)]
Makefile.vc6: Added support for WinIDN
Steve Holme [Sat, 8 Nov 2014 17:07:45 +0000 (17:07 +0000)]
Makefile.dist: Added some missing SSPI configurations
Steve Holme [Sat, 8 Nov 2014 16:49:35 +0000 (16:49 +0000)]
Makefile.dist: Separated the groups of SSL configurations from each other
Steve Holme [Sat, 8 Nov 2014 16:37:31 +0000 (16:37 +0000)]
Makefile.dist: Grouped the x64 configurations next to their x86 counterparts
Steve Holme [Fri, 7 Nov 2014 11:26:06 +0000 (11:26 +0000)]
curl.h: Tidy up of CURL_VERSION_* flags
As the list has gotten a little messy and hard to read, especially with
the introduction of deprecated items, aligned the values and comments
into clean columns and reworked some of the comments in the process.
Steve Holme [Fri, 7 Nov 2014 10:44:00 +0000 (10:44 +0000)]
curl_tool: Added krb5 to the supported features
Steve Holme [Fri, 7 Nov 2014 10:42:54 +0000 (10:42 +0000)]
configure: Added krb5 to the supported features
Steve Holme [Fri, 7 Nov 2014 10:40:01 +0000 (10:40 +0000)]
version info: Added Kerberos V5 to the supported features
Guenter Knauf [Fri, 7 Nov 2014 09:27:26 +0000 (10:27 +0100)]
mk-ca-bundle.vbs: switch to new certdata.txt url.
Steve Holme [Fri, 7 Nov 2014 00:08:16 +0000 (00:08 +0000)]
RELEASE-NOTES: Synced with
dcad09e125
Steve Holme [Fri, 7 Nov 2014 00:03:11 +0000 (00:03 +0000)]
http_digest: Fixed some memory leaks introduced in commit
6f8d8131b1
Fixed a couple of memory leaks as a result of moving code that used to
populate allocuserpwd and relied on it's clean up.
Steve Holme [Thu, 6 Nov 2014 23:47:18 +0000 (23:47 +0000)]
docs: Updated following the addition of SSPI based HTTP digest auth
Steve Holme [Thu, 6 Nov 2014 23:12:18 +0000 (23:12 +0000)]
sasl_sspi: Tidy up of the existing digest code
Following the addition of SSPI support for HTTP digest, synchronised
elements of the email digest code with that of the new HTTP code.
Steve Holme [Thu, 6 Nov 2014 23:01:36 +0000 (23:01 +0000)]
http_digest: Post SSPI support tidy up
Post tidy up to ensure commonality of code style and variable names.
Dan Fandrich [Thu, 6 Nov 2014 21:28:48 +0000 (22:28 +0100)]
test552: Don't run HTTP digest tests for SSPI based builds
Technical difficulties prevented this from going into the
previous commit.
Steve Holme [Thu, 6 Nov 2014 19:57:16 +0000 (19:57 +0000)]
tests: Don't run HTTP digest tests for SSPI based builds
Added !SSPI to the features list of the HTTP digest tests, as SSPI
based builds now use the Windows SSPI messaging API rather than the
internal functions, and we can't control the random numbers that get
used as part of the digest.
Daniel Stenberg [Thu, 6 Nov 2014 16:35:04 +0000 (17:35 +0100)]
curl.1: show zone index use in a URL
Steve Holme [Thu, 6 Nov 2014 15:25:45 +0000 (15:25 +0000)]
http_digest: Fixed auth retry loop when SSPI based authentication fails
Steve Holme [Thu, 6 Nov 2014 15:05:36 +0000 (15:05 +0000)]
http_digest: Reworked the SSPI based input token storage
Reworked the input token (challenge message) storage as what is passed
to the buf and desc in the response generation are typically blobs of
data rather than strings, so this is more in keeping with other areas
of the SSPI code, such as the NTLM message functions.
Steve Holme [Thu, 6 Nov 2014 13:27:30 +0000 (13:27 +0000)]
sasl_sspi: Fixed compilation warning from commit
2d2a62e3d9
Added void reference to unused 'data' parameter back to fix compilation
warning.
Steve Holme [Thu, 6 Nov 2014 13:09:48 +0000 (13:09 +0000)]
sspi: Align definition values to even columns as we use 2 char spacing
Steve Holme [Thu, 6 Nov 2014 12:59:57 +0000 (12:59 +0000)]
sspi: Fixed missing definition of ISC_REQ_USE_HTTP_STYLE
Some versions of Microsoft's sspi.h don't define this.
Steve Holme [Thu, 6 Nov 2014 12:31:10 +0000 (12:31 +0000)]
sasl: Removed non-SSPI Digest functions and defines from SSPI based builds
Introduced in commit
7e6d51a73c these functions and definitions are only
required by the internal challenge-response functions now.
Steve Holme [Thu, 6 Nov 2014 12:10:50 +0000 (12:10 +0000)]
sasl_sspi: Added HTTP digest response generation code
Steve Holme [Thu, 6 Nov 2014 11:42:49 +0000 (11:42 +0000)]
http_digest: Added SSPI based challenge decoding code
Steve Holme [Thu, 6 Nov 2014 11:30:45 +0000 (11:30 +0000)]
http_digest: Added SSPI based clean-up code
Steve Holme [Thu, 6 Nov 2014 10:39:37 +0000 (10:39 +0000)]
http_digest: Added SSPI based authentication functions
This temporarily breaks HTTP digest authentication in SSPI based builds,
causing CURLE_NOT_BUILT_IN to be returned. A follow up commit will
resume normal operation.
Steve Holme [Thu, 6 Nov 2014 10:23:08 +0000 (10:23 +0000)]
http_digest: Added required SSPI based variables to digest structure
Frank Gevaerts [Thu, 6 Nov 2014 10:03:06 +0000 (11:03 +0100)]
contributors.sh: --releasenotes reads in names from RELEASE-NOTES
This is very handy when updating the RELEASE-NOTES as then we sometimes
have names added manually in the existing list and we use this script to
update the set.
Daniel Stenberg [Thu, 6 Nov 2014 09:25:49 +0000 (10:25 +0100)]
RELEASE-NOTES: synced with
68542e72a9
Daniel Stenberg [Thu, 6 Nov 2014 09:14:33 +0000 (10:14 +0100)]
curl_easy_setopt.3: add CURLOPT_PINNEDPUBLICKEY
Reported-by: Christian Hägele
Bug: http://curl.haxx.se/mail/lib-2014-11/0078.html
Steve Holme [Wed, 5 Nov 2014 23:04:43 +0000 (23:04 +0000)]
build: Fixed Visual Studio project file generation of strdup.[c|h]
As the curl command-line tool now includes it's own version of strdup(),
for platforms that don't have it, fixed up the git respository Visual
Studio project file generator to not include the version from lib in the
tool project files, rather than having both lib\strdup.[c|h] and
src\tool_strdup.[c|h] present.
Daniel Stenberg [Wed, 5 Nov 2014 22:33:22 +0000 (23:33 +0100)]
tool_strdup.c: include the tool strdup.h
... not the lib/ one that the tool no longer uses!
Daniel Stenberg [Wed, 5 Nov 2014 13:45:57 +0000 (14:45 +0100)]
THANKS-filter: added another Michał Górny version we've used
Daniel Stenberg [Wed, 5 Nov 2014 13:07:21 +0000 (14:07 +0100)]
contributors.sh: split lists using " and "
... and require the space after the filtering to make the filter able to
remove names.
Steve Holme [Wed, 5 Nov 2014 21:33:33 +0000 (21:33 +0000)]
http_digest: Fixed memory leaks from commit
6f8d8131b1
Steve Holme [Wed, 5 Nov 2014 18:20:01 +0000 (18:20 +0000)]
sasl: Fixed compilation warning from commit
25264131e2
Added forward declaration of digestdata to overcome the following
compilation warning:
warning: 'struct digestdata' declared inside parameter list
Additionally made the ntlmdata forward declaration dependent on
USE_NTLM similar to how digestdata and kerberosdata are.
Steve Holme [Wed, 5 Nov 2014 17:56:47 +0000 (17:56 +0000)]
sasl: Fixed HTTP digest challenges with spaces between auth parameters
Broken as part of the rework, in commit
7e6d51a73c, to assist with the
addition of HTTP digest via Windows SSPI.
Steve Holme [Wed, 5 Nov 2014 15:38:10 +0000 (15:38 +0000)]
http_digest: Fixed compilation errors from commit
6f8d8131b1
error: invalid operands to binary
warning: pointer targets in assignment differ in signedness
Steve Holme [Wed, 5 Nov 2014 15:01:51 +0000 (15:01 +0000)]
http_digest: Moved response generation into SASL module
Steve Holme [Wed, 5 Nov 2014 14:33:26 +0000 (14:33 +0000)]
http_digest: Moved challenge decoding into SASL module
Steve Holme [Wed, 5 Nov 2014 13:58:24 +0000 (13:58 +0000)]
http_digest: Moved clean-up function into SASL module
Steve Holme [Wed, 5 Nov 2014 13:35:27 +0000 (13:35 +0000)]
http_digest: Moved algorithm definitions to SASL module
Gisle Vanem [Wed, 5 Nov 2014 13:10:49 +0000 (13:10 +0000)]
ssh: Fixed build on platforms where R_OK is not defined
Bug: http://curl.haxx.se/mail/lib-2014-11/0035.html
Reported-by: Jan Ehrhardt
Steve Holme [Wed, 5 Nov 2014 12:53:06 +0000 (12:53 +0000)]
strdup: Removed irrelevant comment
...as Curl_memdup() duplicates an area of fix size memory, that may be
binary, and not a null terminated string.
Steve Holme [Wed, 5 Nov 2014 12:42:35 +0000 (12:42 +0000)]
url.c: Fixed compilation warning
conversion from 'curl_off_t' to 'size_t', possible loss of data
Steve Holme [Wed, 5 Nov 2014 12:05:34 +0000 (12:05 +0000)]
http_digest: Use CURLcode instead of CURLdigest
To provide consistent behaviour between the various HTTP authentication
functions use CURLcode based error codes for Curl_input_digest()
especially as the calling code doesn't use the specific error code just
that it failed.
Daniel Stenberg [Wed, 5 Nov 2014 11:59:53 +0000 (12:59 +0100)]
contributors.sh: filter common alternative name spellings
docs/THANKS-filter is a new filter file for converting contributor names
we get or have recorded in alternative formats to the one we already use
in THANKS. To help us show individual contributors using a single
presentation of their names.
Daniel Stenberg [Wed, 5 Nov 2014 11:57:24 +0000 (12:57 +0100)]
THANKS: added missing contributor from 2012
Frank Gevaerts [Wed, 5 Nov 2014 10:59:53 +0000 (11:59 +0100)]
Remove duplicate names.
The removed names also appear as:
Andrés García, François Charlier, Gökhan Şengün, Michał Górny, Sébastien
Willemijns, Christopher Conroy, John E. Malmberg, Luca Altea, Peter Su,
S. Moonesamy, Samuel Listopad, Yasuharu Yamada, Karl Moerder
Steve Holme [Wed, 5 Nov 2014 11:43:22 +0000 (11:43 +0000)]
sspi: Define authentication package name constants
These were previously hard coded, and whilst defined in security.h,
they may or may not be present in old header files given that these
defines were never used in the original code.
Not only that, but there appears to be some ambiguity between the ANSI
and UNICODE NTLM definition name in security.h.
Patrick Monnerat [Wed, 5 Nov 2014 11:42:24 +0000 (12:42 +0100)]
Adjust OS400-specific support to last release
Daniel Stenberg [Wed, 5 Nov 2014 10:28:59 +0000 (11:28 +0100)]
THANKS: added two missing names and removed a duplicate
./contributors.sh found these extra ones that somehow had fallen
through the cracks and never gotten added here.
Reported-by: Frank Gevaerts
Daniel Stenberg [Wed, 5 Nov 2014 08:43:07 +0000 (09:43 +0100)]
bump: towards next release
Daniel Stenberg [Wed, 5 Nov 2014 08:42:55 +0000 (09:42 +0100)]
THANKS: added names from 7.39.0 release notes
Daniel Stenberg [Wed, 5 Nov 2014 07:20:18 +0000 (08:20 +0100)]
RELEASE-NOTES: 7.39.0 release (commit
b3875606925)
Daniel Stenberg [Fri, 17 Oct 2014 10:59:32 +0000 (12:59 +0200)]
curl_easy_duphandle: CURLOPT_COPYPOSTFIELDS read out of bounds
When duplicating a handle, the data to post was duplicated using
strdup() when it could be binary and contain zeroes and it was not even
zero terminated! This caused read out of bounds crashes/segfaults.
Since the lib/strdup.c file no longer is easily shared with the curl
tool with this change, it now uses its own version instead.
Bug: http://curl.haxx.se/docs/adv_20141105.html
CVE: CVE-2014-3707
Reported-By: Symeon Paraschoudis
Daniel Stenberg [Thu, 16 Oct 2014 21:58:59 +0000 (23:58 +0200)]
lib544.c: use duphandle for test 545
To verify that curl_easy_duphandle() works fine on a handle that has
gotten data stored with *_COPYPOSTFIELDS.
Daniel Stenberg [Tue, 4 Nov 2014 22:02:09 +0000 (23:02 +0100)]
tests: add new feature 'SSLpinning'
... and make test 2034 and 2035 require it, and have it set when built
with OpenSSL or GnuTLS.
Daniel Stenberg [Tue, 4 Nov 2014 13:28:42 +0000 (14:28 +0100)]
buildconf: update copyright year
Steve Holme [Tue, 4 Nov 2014 14:07:55 +0000 (14:07 +0000)]
INSTALL: Consistent spacing in section headings, paragraphs and examples
Daniel Stenberg [Tue, 4 Nov 2014 13:27:20 +0000 (14:27 +0100)]
buildconf: stop checking for libtool
As we only use libtoolize, only check for that!
Steve Holme [Tue, 4 Nov 2014 12:44:54 +0000 (12:44 +0000)]
INSTALL: Corrected MIT Kerberos and Heimdal package names
Steve Holme [Tue, 4 Nov 2014 12:32:33 +0000 (12:32 +0000)]
README: Corrected inconsistent use of --help
Steve Holme [Tue, 4 Nov 2014 11:51:19 +0000 (11:51 +0000)]
INSTALL: Use GSS-API rather than GSSAPI
As implementations are refereed to GSS-API libraries as per the RFC and
GSSAPI typically refers to the SASL authentication mechanism.
...and minor rewording on the same paragraph.
Steve Holme [Tue, 4 Nov 2014 11:45:35 +0000 (11:45 +0000)]
README: Added note about using Visual Studio projects out of git repository
K. R. Walker [Mon, 3 Nov 2014 18:31:24 +0000 (11:31 -0700)]
cmake: fix ZLIB_INCLUDE_DIRS use
CMake 2.8's FindZLIB.cmake documents ZLIB_INCLUDE_DIRS, see
http://www.cmake.org/cmake/help/v2.8.0/cmake.html#module:FindZLIB
Bug: https://github.com/bagder/curl/pull/123
Jay Satiro [Fri, 24 Oct 2014 18:26:57 +0000 (14:26 -0400)]
SSL: PolarSSL default min SSL version TLS 1.0
- Prior to this change no SSL minimum version was set by default at
runtime for PolarSSL. Therefore in most cases PolarSSL would probably
have defaulted to a minimum version of SSLv3 which is no longer secure.
Daniel Stenberg [Tue, 4 Nov 2014 09:40:07 +0000 (10:40 +0100)]
opts-Makefile: put more man pages into dist and make hmtl+pdf
Daniel Stenberg [Tue, 4 Nov 2014 08:46:41 +0000 (09:46 +0100)]
curl_multi_setopt.3: refer to stand-alone pages
... instead of duplicating info.