547c136b | 11-Mar-2005 |
Daniel Stenberg |
oops, once is enough! ;-) |
4ed13bde | 11-Mar-2005 |
Daniel Stenberg |
Define HAVE_AF_INET6_H for Netware too, as Guenter Knauf's builds indicate. |
80e01deb | 11-Mar-2005 |
Dan Fandrich |
Added HAVE_AF_INET6 to Netware's config.h |
fb9ae9d0 | 11-Mar-2005 |
Dan Fandrich |
Fixed some compiler warnings. |
dd54d855 | 11-Mar-2005 |
Dan Fandrich |
Added HAVE_STRUCT_IN6_ADDR to Netware's config.h |
205f8b26 | 11-Mar-2005 |
Dan Fandrich |
Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detects the correct dynamic library names by default, and provides override switches --with-ldap-lib, --with-lber-lib and
Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detects the correct dynamic library names by default, and provides override switches --with-ldap-lib, --with-lber-lib and --without-lber-lib. Added CURL_DISABLE_LDAP to platform-specific config files to disable LDAP support on those platforms that probably don't have dynamic OpenLDAP libraries available to avoid compile errors.
show more ...
|
c4ce9ac4 | 11-Mar-2005 |
Daniel Stenberg |
Add an alert already here if 'make test' is attempted for a cross-compile since there's no use building the whole test suite first and _then_ tell it doesn't work anyway... |
0e4e28fd | 11-Mar-2005 |
Daniel Stenberg |
no more rewriting of the setup file |
db2370a1 | 10-Mar-2005 |
Daniel Stenberg |
Dominick Meglio added ares_parse_aaaa_reply.c and did various adjustments. The first little steps towards IPv6 support! |
d1d35ba8 | 10-Mar-2005 |
Daniel Stenberg |
Christopher R. Palmer made it possible to build libcurl with the 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
Christopher R. Palmer made it possible to build libcurl with the 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.
show more ...
|
2ab2e767 | 09-Mar-2005 |
Daniel Stenberg |
configure, socks, debug, getdate |
04726292 | 09-Mar-2005 |
Daniel Stenberg |
As reported by 'nodak sodak' we should check for a NULL pointer before referencing the proxy name pointer. |
c4f7570a | 09-Mar-2005 |
Dan Fandrich |
Stopped linking to the SSL libs if a full installation isn't found. Removed a redundant library check. |
d26cfd57 | 09-Mar-2005 |
Daniel Stenberg |
skip the test of "2094 Nov 6" for now, since the 64bit time_t systems return different values for it... |
b7ffc6bb | 08-Mar-2005 |
Daniel Stenberg |
remove old printf() debug leftover |
8a96aec5 | 08-Mar-2005 |
Daniel Stenberg |
mktime() returns a time_t. time_t is often 32 bits, even on many architectures that feature 64 bit 'long'. Some systems have 64 bit time_t and deal with years beyond 2038. However, even
mktime() returns a time_t. time_t is often 32 bits, even on many architectures that feature 64 bit 'long'. Some systems have 64 bit time_t and deal with years beyond 2038. However, even some of the systems with 64 bit time_t returns -1 for dates beyond 03:14:07 UTC, January 19, 2038. (Such as AIX 5100-06)
show more ...
|
5cd9f571 | 08-Mar-2005 |
Daniel Stenberg |
days are english |
702664e9 | 08-Mar-2005 |
Daniel Stenberg |
Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTP file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some con
Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTP file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1)
show more ...
|
18d87edd | 08-Mar-2005 |
Dan Fandrich |
Fixed the --with-zlib configure option so that it always adds the specified path to the compiler flags. Before, a zlib installation in the default path was always used in preference to the o
Fixed the --with-zlib configure option so that it always adds the specified path to the compiler flags. Before, a zlib installation in the default path was always used in preference to the one in the desired location.
show more ...
|
dc597956 | 07-Mar-2005 |
Dan Fandrich |
fseek() with SEEK_SET is broken on large file capable 32-bit systems, so revert to the SEEK_END method of repositioning the stream after a ftruncate() and only use SEEK_SET if ftruncate() isn
fseek() with SEEK_SET is broken on large file capable 32-bit systems, so revert to the SEEK_END method of repositioning the stream after a ftruncate() and only use SEEK_SET if ftruncate() isn't available.
show more ...
|
cb9bb31f | 07-Mar-2005 |
Daniel Stenberg |
test 236: FTP resume upload but denied access to remote file |
02706bec | 07-Mar-2005 |
Daniel Stenberg |
valgrind.pm fixed |
7657186b | 06-Mar-2005 |
Daniel Stenberg |
added valgrind.pm to the dist |
42ac2444 | 05-Mar-2005 |
Dan Fandrich |
Better cope with a failed or unavailable ftruncate(). Added HAVE_FTRUNCATE to all the static config-*.h files on the assumption that all those systems provide it. |
31891b55 | 05-Mar-2005 |
Daniel Stenberg |
Samuel D�az Garc�a's correction |