Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-20 | Move header file inclusion logic and definition of timeval | Yang Tse | |
struct for platforms that don't have it to setup_once.h | |||
2007-02-20 | Several corrections & changes to what has been stated in revision 1.45 | Yang Tse | |
1) The maketgz script does not insert the timestamp in curlver.h, it actually updates it. For CVS versions it is the "CVS" string. 2) testcurl.pl will always print the "date" string which represents the moment the test build is run. 3) testcurl.pl may not print the "timestamp" string since the script may end before it is printed out. (i.e. unable to update from CVS) 4) The "timestamp" string printed will be the same as the "date" one unless one of the following conditions is met. *) It is a tarball-based build. Timestamp will be creation time. *) CVS update has been done. Timestamp will be end of CVS update. | |||
2007-02-20 | add tutil_tvdiff_secs() for completeness | Yang Tse | |
2007-02-19 | Mention curl-config dependencies fix. | Dan Fandrich | |
2007-02-19 | fix typo | Yang Tse | |
2007-02-19 | Show libcurl's timestamp. This timestamp is only available in curlver.h | Yang Tse | |
for tarball-based tests and builds, the maketgz script inserts it when the tarball is created. For CVS-based tests and builds the timestamp we show is the current UTC build time as it is the CVS version timestamp. In this way, all builds will have a valid source code timestamp which isn't related to the moment the tests and build is performed, with the exception of CVS-based ones which have the same "date" and "timestamp" | |||
2007-02-19 | Added ares_parse_ns_reply.obj etc. | Gisle Vanem | |
2007-02-19 | INADDR_NONE no longer used. | Gisle Vanem | |
2007-02-19 | Fixed typo. | Gisle Vanem | |
2007-02-19 | Vlad Dinulescu added ares_parse_ns_reply() | Daniel Stenberg | |
2007-02-19 | Ian Turner fixed the libcurl.m4 macro's support for --with-libcurl. | Daniel Stenberg | |
AC_PATH_PROG was not used properly. | |||
2007-02-19 | - Shmulik Regev found a memory leak in re-used HTTPS connections, at least | Daniel Stenberg | |
when the multi interface was used. | |||
2007-02-19 | and fix warnings due to lack of protos | Daniel Stenberg | |
2007-02-19 | - Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and | Daniel Stenberg | |
5). | |||
2007-02-19 | fixed code to compile and removed one warning | Daniel Stenberg | |
2007-02-19 | log a message, stating the need of openssl to run this test | Yang Tse | |
2007-02-19 | Oops missing var | Yang Tse | |
2007-02-19 | compiler warning fix | Yang Tse | |
2007-02-19 | add debug messages for initialization failures | Yang Tse | |
2007-02-18 | - Jeff Pohlmeyer identified two problems: first a rather obscure problem with | Daniel Stenberg | |
the multi interface and connection re-use that could make a curl_multi_remove_handle() ruin a pointer in another handle. The second problem was less of an actual problem but more of minor quirk: the re-using of connections wasn't properly checking if the connection was marked for closure. | |||
2007-02-18 | Michal Marek comment fix | Yang Tse | |
2007-02-18 | fix ENAMETOOLONG and ENOTEMPTY may already be defined in errno.h | Yang Tse | |
2007-02-17 | Use configure's new LIBCURL_LIBS variable | Dan Fandrich | |
2007-02-17 | Move portable error number symbolic name definitions to setup_once.h | Yang Tse | |
2007-02-17 | compiler warning fix | Yang Tse | |
2007-02-17 | Replicate the configure tests that determined that timeval was available. | Yang Tse | |
2007-02-17 | compiler warning fix | Yang Tse | |
2007-02-17 | Do a better job at determining what test servers *really* need to link against. | Dan Fandrich | |
2007-02-17 | getpart implicitly drags in some networking functions, so it needs to be | Dan Fandrich | |
linked to the networking libraries. | |||
2007-02-17 | Better separate the library dependencies into those required by libcurl | Dan Fandrich | |
and those required by other components to avoid forcing unneeded dependencies into the target objects. | |||
2007-02-17 | Remove C99isms | Dan Fandrich | |
2007-02-17 | Replicate the configure tests that determined that timeval was available. | Dan Fandrich | |
2007-02-16 | add debug messages for fopen() failures | Yang Tse | |
2007-02-16 | add debug messages for fopen() failures | Yang Tse | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-16 | - Duncan Mac-Vicar Prett and Michal Marek reported problems with resetting | Daniel Stenberg | |
CURLOPT_RANGE back to no range on an easy handle when using FTP. | |||
2007-02-16 | maxdownload is actually -1 for unlimited | Daniel Stenberg | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-16 | compiler warning fix | Yang Tse | |
2007-02-15 | avoid redefinition of SET_ERRNO() | Yang Tse | |
2007-02-15 | introduce uppercase macros SOCKERRNO, SET_SOCKERRNO(), ERRNO and SET_ERRNO() | Yang Tse | |
making them available to any source code file which includes "setup.h". Macro SOCKERRNO / SET_SOCKERRNO() returns / sets the *socket-related* errno (or equivalent) on this platform to hide platform details to code using it. Macro ERRNO / SET_ERRNO() returns / sets the NOT *socket-related* errno (or equivalent) on this platform to hide platform details to code using it. | |||
2007-02-15 | icc 9.0 when compiling its generated code for its own FD_SET, | Yang Tse | |
FD_ISSET, and FD_ZERO macros emits warnings #1469 and #593. So for icc 9.0 we also ignore warnings #1469 and #593. * 593 warns on "variable __d0 was set but never used" * 1469 warns on "cc clobber ignored" | |||
2007-02-15 | compiler warning fix | Yang Tse | |
2007-02-15 | Do not define HAVE_GMTIME_R for native Windows builds | Yang Tse | |
2007-02-15 | Daniel Mirchandani fix to make libcurl build nicely on Winsock | Yang Tse | |
build targets when --disable-verbose is specified. | |||
2007-02-15 | enabled IPV6 builds. | Gunter Knauf | |
2007-02-14 | Added --ftp-ssl-ccc issue. | Dan Fandrich | |
2007-02-14 | Don't bother adding a library path of /usr/lib in curl-config --libs | Dan Fandrich | |
2007-02-14 | Oops, missing argument separator comma | Yang Tse | |