Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-16 | saved for the future | Daniel Stenberg | |
2004-11-15 | clean up start time and t_startsingle use so that redirect_time works properly | Daniel Stenberg | |
2004-11-14 | Borland doesn't have <sys/utime.h> nor utime(). | Gisle Vanem | |
2004-11-14 | Static lib is libcurl.lib and import lib libcurl_imp.lib. | Gisle Vanem | |
Added implib command. Cleanup | |||
2004-11-13 | Dan fixed the CURL_DISABLE_VERBOSE_STRINGS stuff for older gcc versions since | Daniel Stenberg | |
they don't support C99 varargs macros. | |||
2004-11-13 | Renamed import lib to "libcurl_imp.lib". | Gisle Vanem | |
Some cleanup and making it more readable. | |||
2004-11-12 | Netware target (hosted on Linux gcc) doesn't support | Gisle Vanem | |
or need __declspec. | |||
2004-11-12 | Dan Fandrich added the --disable-crypto-auth option to configure to allow | Daniel Stenberg | |
libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.) | |||
2004-11-11 | Dan Fandrich: make --disable-dict actually disable dict | Daniel Stenberg | |
2004-11-11 | Fix behaviour when passing NULL to CURLOPT_POSTFIELDS and CURLOPT_HTTPPOST. | Daniel Stenberg | |
2004-11-11 | Dan Fandrich added --disable-verbose | Daniel Stenberg | |
2004-11-11 | dates from 2038 or later now return 0x7fffffff when 32 bit time_t is used | Daniel Stenberg | |
2004-11-09 | Handle drive-letter on MS-DOS. | Gisle Vanem | |
2004-11-09 | Changes for removing libcurl.def file on Win32. | Gisle Vanem | |
Added "CURL_EXTERN" to memdebug.h functions. Cleaned up Makefile.vc6. | |||
2004-11-08 | Change OS name. Fix header guard. | Gisle Vanem | |
2004-11-08 | Un-do changes for WinCE; cdecl decoration is not needed. | Gisle Vanem | |
Confirmed by Paul Nolan. | |||
2004-11-08 | check for and require tld.h to be present before libidn usage is activated | Daniel Stenberg | |
in the build, since libidn 0.3.X didn't have the header and we don't support that old libidn versions anyway. This was mentioned on the list by Jean-Philippe Barrette-LaPierre and in bug report #1062264. | |||
2004-11-05 | Tim Sneddon's VMS fix for huge HTTP POSTs | Daniel Stenberg | |
2004-11-05 | removed errno, added EAGAIN | Daniel Stenberg | |
2004-11-05 | it has a sys/stat.h file, according to Paul Nolan | Daniel Stenberg | |
2004-11-04 | delete trailing whitespace | Daniel Stenberg | |
2004-11-02 | use ifdef not if | Daniel Stenberg | |
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-10-27 | Dan Fandrich's gzip handling fix | Daniel Stenberg | |
2004-10-26 | Testing to define _REENTRANT unconditionally in here. | Daniel Stenberg | |
2004-10-25 | Tomas Pospisek filed bug report #1053287 that proved -C - and --fail on a | Daniel Stenberg | |
file that was already completely downloaded caused an error, while it doesn't if you don't use --fail! I added test case 194 to verify the fix. Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in libcurl v8 due to all the kludges needed to support it. | |||
2004-10-24 | Mohun Biswas found out that formposting a zero-byte file didn't work very | Daniel Stenberg | |
good. I fixed. | |||
2004-10-21 | Dan Fandrich's better ifdef for include fix | Daniel Stenberg | |
2004-10-19 | Alexander Krasnostavsky made it possible to make FTP 3rd party transfers with | Daniel Stenberg | |
both source and destination being the same host. It can be useful if you want to move a file on a server or similar. | |||
2004-10-19 | CURLINFO_NUM_CONNECTS and more | Daniel Stenberg | |
2004-10-19 | djgpp has locale.h and setlocale(). | Gisle Vanem | |
2004-10-16 | Alexander Krasnostavsky made the CURLOPT_FTP_CREATE_MISSING_DIRS option work | Daniel Stenberg | |
fine even for third party transfers. | |||
2004-10-16 | libcurl leaked memory for cookies with the "max-age" field set. | Daniel Stenberg | |
2004-10-16 | Added Traian Nicolescu's patches for threaded resolver on | Gisle Vanem | |
Windows. Plugged some potential handle and memory leaks. Refs. http://curl.haxx.se/mail/lib-2004-10/0134.html http://curl.haxx.se/mail/lib-2004-10/0157.html | |||
2004-10-14 | Eric Vergnaud pointed out that libcurl didn't treat ?-letters in the user name | Daniel Stenberg | |
and password fields properly in URLs, like ftp://us?er:pass?word@site.com/. Added test 191 to verify the fix. | |||
2004-10-13 | Set errno = ENOMEM on faild countcheck(). | Gisle Vanem | |
2004-10-12 | #include "strerror.h" to get the strerror proto | Daniel Stenberg | |
2004-10-12 | add proper error message when send() fails | Daniel Stenberg | |
2004-10-11 | removed trailing whitespace | Daniel Stenberg | |
2004-10-11 | SO_NOSIGPIPE | Daniel Stenberg | |
2004-10-10 | another lame attempt to avoid the "warning: will never be executed" warning | Daniel Stenberg | |
by gcc 3.4 | |||
2004-10-10 | MSVC uses 'i64' suffix for 64-bit sizes. | Gisle Vanem | |
2004-10-10 | If long is 8 bytes we can use strtol() to get 64 bit numbers and won't need | Daniel Stenberg | |
our strtoll() replacement function. | |||
2004-10-10 | Prevent a longjmp warning by moving the rc assign within Curl_resolv(). | Daniel Stenberg | |
Andy Cedilnik reported. Warning on HP-UX? | |||
2004-10-10 | Use LL suffix for long long constants if the compiler supports it, to prevent | Daniel Stenberg | |
warnings. | |||
2004-10-08 | killed trailing whitespace | Daniel Stenberg | |
2004-10-08 | if basename was found, check for a prototype and if none was found, provide | Daniel Stenberg | |
our own in the formdata.c file to prevent warnings on systems without it | |||
2004-10-08 | prevent warning with comparison between signed and unsigned | Daniel Stenberg | |
2004-10-07 | use curl_strnequal(), not strncasecmp() | Daniel Stenberg | |
2004-10-07 | use tld_strerror() only if previously detected, since otherwise we can't | Daniel Stenberg | |
work with libidn < 0.5.6 |