- Nov 03, 2014
-
-
Daniel Stenberg authored
-
Carlo Wood authored
The previous condition that checked if the socket was marked as readable when also adding a writable one, was incorrect and didn't take the pause bits properly into account.
-
Peter Wu authored
CHECK_TYPE_SIZE_PREINCLUDE is an internal, undocumented variable which was removed in cmake 2.8.1. According to the MSDN docs[1], inclusion of winsock2.h is sufficient. WIN32_LEAN_AND_MEAN does not really seem to affect the tests, so remove it too[2]. For the non-windows case, remove inet headers as POSIX only requires sys/socket.h. [1]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms740504%28v=vs.85%29.aspx [2]: http://stackoverflow.com/questions/11040133/what-does-defining-win32-lean-and-mean-exclude-exactly Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
There were several -Wunused warnings and one duplicate macro definition. The EXTRA_DEFINES variable of the CurlCheckCSources macro was being abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to insert extra C code. Avoid this broken abstraction and use cmake's check_c_source_compiles directly (works fine with CMake 2.8, maybe even cmake 2.6). After cleaning up all related variables (EXTRA_DEFINES, HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate add_headers_include macro and remove duplicate header additions before the struct timeval check. Oh, and now the code is converted to use CheckCSourceRuns and CheckCSourceCompiles, the two curl-specific helpers can be removed. Unfortunately, the cmake output is now slightly more verbose. Before: Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed Since check_c_source_compiles prints the varname, now you see: Performing Test curl_cv_func_send_test Performing Test curl_cv_func_send_test - Failed Tested: int send(int, const void *, size_t, int) Compared cmake output with each other using vimdiff, no functional differences were found. Tested with GCC 4.9.1 and Clang 3.5.0. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
This patch cleans up the automatically-generated (?) code and fixes one case that will always fail due to syntax error. HAVE_GETHOSTBYADDR_R_5_REENTRANT always failed because of a trailing character ("int length;q"). Several parameter type and unused variable warnings popped up. This causes a detection failure with -Werror. Observe that the REENTRANT cases are exactly the same as their non-REENTRANT cases except for a `_REENTRANT` macro definition. Merge all these pieces and build one big main function with different cases, but reusing variables where logical. For the cases where the parameters where NULL, I looked at lib/hostip4.c to get an idea of the parameters types. void-cast variables such as 'rc' to avoid -Wuninitialized errors. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
autotools does not use features.h nor _BSD_SOURCE. As this macro triggers warnings since glibc 2.20, remove it. It should not have functional differences. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
- Nov 02, 2014
-
-
Steve Holme authored
Additionally, updated "GSSAPI" to "GSS-API" for a Cmake related change as GSSAPI can be confused with the authentication mechanism rather than a GSS-API implementation library such as MIT or Heimdal.
-
Steve Holme authored
Added support for WinIDN build configurations to the VC6 project files.
-
Steve Holme authored
Added support for WinIDN build configurations to the VC7 and VC7.1 project files.
-
Steve Holme authored
A left over from the VC6 project files, so mainly cosmetic in Visual Studio .NET as it can handle both comma and semi-colon characters for separating multiple pre-processor definitions. However, the IDE uses semi-colons if the value is edited, and as such, this may cause problems in future for anyone updating the files or merging patches. Used the Visual Studio IDE to correct the separator character.
-
Steve Holme authored
..when working from the git repository. This is particularly useful for single development environments where the project files for all supported versions of Visual Studio may not be required.
-
Jay Satiro authored
Prior to this change if x64 release was specified a failed attempt was made to build x86 release instead.
-
Steve Holme authored
-
Steve Holme authored
...and removed duplication of what protocols are supported from the description text.
-
Steve Holme authored
-
Steve Holme authored
...and revised the proxy wording a little as well.
-
Steve Holme authored
...and corrected a related typo in curl_easy_setopt.3.
-
Guenter Knauf authored
-
Steve Holme authored
-
Steve Holme authored
As this has been present for SOCKSv5 proxy since v7.19.4 and for IMAP, POP3 and SMTP authentication since v7.38.0.
-
Steve Holme authored
Support for Kerberos V4 was removed in v7.33.0.
-
Steve Holme authored
Typically the USE_WINDOWS_SSPI definition would not be used when the CURL_DISABLE_CRYPTO_AUTH define is, however, it is still a valid build configuration and, as such, the SASL Kerberos V5 (GSSAPI) authentication data structures and functions would incorrectly be used when they shouldn't be. Introduced a new USE_KRB5 definition that takes into account the use of CURL_DISABLE_CRYPTO_AUTH like USE_SPNEGO and USE_NTLM do.
-
Steve Holme authored
More CURLcode fixes.
-
- Nov 01, 2014
-
-
Daniel Stenberg authored
Basically since servers often then don't respond well to this and instead send the full contents and then libcurl would instead error out with the assumption that the server doesn't support resume. As the data is then already transfered, this is now considered fine. Test case 1434 added to verify this. Test case 1042 slightly modified. Reported-by: hugo Bug: http://curl.haxx.se/bug/view.cgi?id=1443
-
Steve Holme authored
More standardisation of CURLcode usage and coding style.
-
Steve Holme authored
...and some minor code style changes.
-
Steve Holme authored
-
- Oct 31, 2014
-
-
Steve Holme authored
-
Steve Holme authored
As this is covered by the PROTOCOLS section and saves having to update two parts of the document with the same information in future.
-
Steve Holme authored
As implementations are refereed to GSS-API libraries as per the RFC and GSSAPI typically refers to an authentication mechanism.
-
Steve Holme authored
Added missing IMAP to the protocol list.
-
- Oct 30, 2014
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
...as this option affects more that just FTP.
-
Guenter Knauf authored
-
Daniel Stenberg authored
-
Steve Holme authored
Whilst the description included information about SMTP, the protocol list only showed "TTP, FTP, IMAP, POP3".
-
Steve Holme authored
-
- Oct 29, 2014
-
-
Daniel Stenberg authored
... and allow building with nghttp2 but completely without NPN and ALPN, as nghttp2 can still be used for plain-text HTTP. Reported-by: Lucas Pardue
-
Daniel Stenberg authored
... since the conditional in the code are now based on OpenSSL versions instead to better support non-configure builds.
-