Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-06 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-10-05 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-10-05 | curl tool: code moved to tool_*.[ch] files | Yang Tse | |
2011-10-03 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-24 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-22 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. | |||
2011-09-21 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. | |||
2011-09-20 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
Overhauled FindWin32CACert() | |||
2011-09-19 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-18 | curl tool: create tool_myfunc.[ch] which later on will hold my_* functions | Yang Tse | |
Additionally function my_useragent() now provides default User-Agent string | |||
2011-09-16 | curl tool: move 'Configurable' and free_config_fields() to tool_cfgable.[ch] | Yang Tse | |
Reviewing fields being free'd in free_config_fields() still pending | |||
2011-09-16 | curl tool: move so called 'multi_files' stuff into tool_mfiles.[ch] | Yang Tse | |
Additionally some code reorganization and direct OOM handling fixes, just another step towards fixing curl tool issues uncovered 2011-09-15 | |||
2011-09-16 | curl tool: move convert_* functions into tool_convert.[ch] | Yang Tse | |
Additionally fix data type of result vars for iconv() calls | |||
2011-09-14 | src/Makefile.vc6: adjust resource compiler include path | Yang Tse | |
2011-08-13 | VC6 makefiles: added embedded documentation | Daniel Stenberg | |
Just a note about the fact that all VC[6/8/9/10] makefiles are generated from the VC6 one as source. | |||
2011-06-21 | windows build: use correct MS CRT | Josue Andrade Gomes | |
2011-02-13 | Updated OpenSSL version, added links to docu. | Guenter Knauf | |
2011-01-13 | Use env var for PSDK instead of hardcoded path. | Guenter Knauf | |
2010-12-20 | build: refactoring of msvc makefiles to allow overriding of library filenames. | Yang Tse | |
Default libcurl's file names are kept equal to those used since Y2K. | |||
2010-11-12 | Makefile.vc6: fixed the xattr.c compile | Adam Light | |
2010-11-07 | xattr: fix VisualStudio builds | Yang Tse | |
2010-08-10 | Updated lib dependency versions. | Guenter Knauf | |
2010-04-20 | replaced wsock32.lib usage with ws2_32.lib in MSVC makefiles | Ruslan Gazizov | |
2009-07-15 | Added nonblock.c to the non-automake makefiles (note that the dependencies | Dan Fandrich | |
in the Watcom makefiles aren't quite correct). | |||
2009-06-15 | DEBUGBUILD / CURLDEBUG decoupling follow-up | Yang Tse | |
2009-06-05 | introduction of os-specific.c and os-specific.h | Yang Tse | |
2009-01-29 | Introduced curl_sspi.c and curl_sspi.h for the implementation of functions | Yang Tse | |
Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c Also adjusted socks_sspi.c to remove the link-time dependency on the Windows SSPI library using it now in the same way as it was done in http_ntlm.c. | |||
2009-01-28 | - Markus Moeller introduced two new options to libcurl: | Daniel Stenberg | |
CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl to do GSS-style authentication with SOCKS5 proxies. The curl tool got the options called --socks5-gssapi-service and --socks5-gssapi-nec to enable these. | |||
2008-10-23 | Added rawstr.c to the non-configure curl makefiles | Dan Fandrich | |
2008-05-09 | Internal time differences now use monotonic time source if available. | Yang Tse | |
This also implies the removal of the winmm.lib dependency for WIN32. | |||
2008-02-28 | fixed commented define for SSPI. | Gunter Knauf | |
2008-02-22 | - Georg Lippitsch made the src/Makefile.vc6 makefile use the same memory model | Daniel Stenberg | |
options as the lib/Makefile.vc6 already did. | |||
2008-01-23 | update openssl version | Yang Tse | |
2007-10-24 | Vladimir Lazarenko pointed out that we should do some 'mt' magic when | Daniel Stenberg | |
building with VC8 to get the "manifest" embedded to make fine stand-alone binaries. The maketgz and the src/Makefile.vc6 files were adjusted accordingly. | |||
2007-09-15 | fixed VC6 makefiles for new ldap linkage. | Gunter Knauf | |
2007-07-23 | added 2 system libs necessary for linking OpenSSL 0.9.8e statically. | Gunter Knauf | |
2007-07-15 | make users use the latest OpenSSL and Zlib libraries; | Gunter Knauf | |
added hint to compile with SSPI with MSVC6 without PSDK. | |||
2007-03-09 | - Robert A. Monat improved the maketgz and VC6/8 generating to set the correct | Daniel Stenberg | |
machine type too. | |||
2007-02-20 | curl tool was using functions curlx_tvnow and curlx_tvdiff which are not | Yang Tse | |
part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them would be to use timeval.c as a source code file. The above described method works very well when statically linking libcurl and apps, curl tool, but has several drawbacks when you build a true shared libcurl (i.e. Name space clash at linkage stage as functions are defined more than once. Windows makefiles are not capable of handling this system of source-level sharing) So... Now curlutil.h and curlutil.c define and implement cutil_tvnow and cutil_tvdiff which replace curlx_tvnow and curlx_tvdiff for the curl tool. Doing this we avoid the above described problems. | |||
2005-11-08 | Dmitry Bartsevich discovered some issues in compatibilty of SSPI-enabled | Daniel Stenberg | |
version of libcurl with different Windows versions. Current version of libcurl imports SSPI functions from secur32.dll. However, under Windows NT 4.0 these functions are located in security.dll, under Windows 9x - in secur32.dll and Windows 2000 and XP contains both these DLLs (security.dll just forwards calls to secur32.dll). Dmitry's patch loads proper library dynamically depending on Windows version. Function InitSecurityInterface() is used to obtain pointers to all of SSPI function in one structure. : ---------------------------------------------------------------------- | |||
2005-03-11 | fixed two leftover from Christopher's patch | Daniel Stenberg | |
2005-03-10 | Christopher R. Palmer made it possible to build libcurl with the | Daniel Stenberg | |
USE_WINDOWS_SSPI on Windows, and then libcurl will be built to use the native way to do NTLM. SSPI also allows libcurl to pass on the current user and its password in the request. | |||
2005-01-18 | Cody Jones' enhanced version of Samuel Díaz García's MSVC makefile patch. | Daniel Stenberg | |
2005-01-02 | Alex Neblett's minor update | Daniel Stenberg | |
2004-12-10 | David Byron's debug build fix | Daniel Stenberg | |
2004-11-16 | Added revision tag. | Gisle Vanem | |
2004-11-13 | Fix location of timeval.c. | Gisle Vanem | |
2004-11-13 | Set OpenSSL path to same as in ../lib/Makefile.vc6. | Gisle Vanem | |
Import lib is now "libcurl_imp.lib". Some cleanup and making it more readable. | |||
2004-11-12 | MSVC with static link must define CURL_STATICLIB. | Gisle Vanem | |
zlib path set to same as in lib/Makefile.vc6. | |||
2004-07-11 | removed zlib dependence from default target; added new zlib targets. | Gunter Knauf | |