aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-03-15Make nonexistent host names absolute so tests will pass on machinesDan Fandrich
with a wildcard DNS search domain.
2005-03-14Use the libtool variables better to make LDAP library search work onDan Fandrich
more platforms.
2005-03-14hushing up more warningsDaniel Stenberg
2005-03-14silence compiler warnings for mingw win32 builds --enable-debugDaniel Stenberg
2005-03-14show LDFLAGS tooDaniel Stenberg
2005-03-14if ws2_32 is used, append the lib last in the LIBS list (too) to make itDaniel Stenberg
build and link fine with c-ares
2005-03-14Avoid "unused variable" warnings.Gisle Vanem
2005-03-14configure --enable-sspiDaniel Stenberg
2005-03-14security.h is removedDaniel Stenberg
2005-03-14two issues fixedDaniel Stenberg
2005-03-14include security.h with lowercase s to work on cross-compiled mingwDaniel Stenberg
2005-03-14Removed security.h since it shadows an include file mingw needs when buildingDaniel Stenberg
for SSPI support. The contents of the file has been moved into the krb4.h file.
2005-03-13Added --enable-sspi that now make libcurl build with SSPI support. This onlyDaniel Stenberg
works when built for win32.
2005-03-13Prevent gcc warning.Gisle Vanem
2005-03-12found a common lisp bindingDaniel Stenberg
2005-03-12--form-stringDaniel Stenberg
2005-03-12David Houlder added --form-stringDaniel Stenberg
2005-03-12Swap <security.h> and <sspi.h> (needed for MingW).Gisle Vanem
2005-03-11Work around a bug in libtool ver. 1.5 during LDAP library detection.Dan Fandrich
2005-03-11added CURL_VERSION_SSPIDaniel Stenberg
2005-03-11curl_version_info() returns the feature bit CURL_VERSION_SSPIDaniel Stenberg
2005-03-11fixed two leftover from Christopher's patchDaniel Stenberg
2005-03-11the ares_parse_aaaa_reply man pageDaniel Stenberg
2005-03-11Check for winsock.h to work with win32. Only include system headers we knowDaniel Stenberg
exist.
2005-03-11Replace AC_TRY_RUN() with AC_EGREP_CPP() when checking for constants toDaniel Stenberg
work fine with cross-compiled builds.
2005-03-11oops, once is enough! ;-)Daniel Stenberg
2005-03-11Define HAVE_AF_INET6_H for Netware too, as Guenter Knauf's builds indicate.Daniel Stenberg
2005-03-11Added HAVE_AF_INET6 to Netware's config.hDan Fandrich
2005-03-11Fixed some compiler warnings.Dan Fandrich
2005-03-11Added HAVE_STRUCT_IN6_ADDR to Netware's config.hDan Fandrich
2005-03-11Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detectsDan Fandrich
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.
2005-03-11Add an alert already here if 'make test' is attempted for a cross-compileDaniel Stenberg
since there's no use building the whole test suite first and _then_ tell it doesn't work anyway...
2005-03-11no more rewriting of the setup fileDaniel Stenberg
2005-03-10Dominick Meglio added ares_parse_aaaa_reply.c and did various adjustments. TheDaniel Stenberg
first little steps towards IPv6 support!
2005-03-10Christopher R. Palmer made it possible to build libcurl with theDaniel 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-03-09configure, socks, debug, getdateDaniel Stenberg
2005-03-09As reported by 'nodak sodak' we should check for a NULL pointer beforeDaniel Stenberg
referencing the proxy name pointer.
2005-03-09Stopped linking to the SSL libs if a full installation isn't found.Dan Fandrich
Removed a redundant library check.
2005-03-09skip the test of "2094 Nov 6" for now, since the 64bit time_t systems returnDaniel Stenberg
different values for it...
2005-03-08remove old printf() debug leftoverDaniel Stenberg
2005-03-08mktime() returns a time_t. time_t is often 32 bits, even on many architecturesDaniel Stenberg
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)
2005-03-08days are englishDaniel Stenberg
2005-03-08Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTPDaniel Stenberg
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)
2005-03-08Fixed the --with-zlib configure option so that it always adds the specifiedDan Fandrich
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.
2005-03-07fseek() with SEEK_SET is broken on large file capable 32-bit systems, soDan Fandrich
revert to the SEEK_END method of repositioning the stream after a ftruncate() and only use SEEK_SET if ftruncate() isn't available.
2005-03-07test 236: FTP resume upload but denied access to remote fileDaniel Stenberg
2005-03-07valgrind.pm fixedDaniel Stenberg
2005-03-06added valgrind.pm to the distDaniel Stenberg
2005-03-05Better cope with a failed or unavailable ftruncate().Dan Fandrich
Added HAVE_FTRUNCATE to all the static config-*.h files on the assumption that all those systems provide it.
2005-03-05Samuel Díaz García's correctionDaniel Stenberg