Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-27 | Assert that SED and GREP are set | Yang Tse | |
2008-07-27 | Require autoconf 2.57 or newer | Yang Tse | |
2008-07-27 | When calling aclocal, user defined ACLOCAL_FLAGS will now precede ours. | Yang Tse | |
2008-07-27 | For debugging purposes, run aclocal in verbose mode on SunOS systems. | Yang Tse | |
2008-07-27 | move ACLOCAL_AMFLAGS after AUTOMAKE_OPTIONS | Yang Tse | |
2008-07-27 | setup.h handles definition of _REENTRANT based on NEED_REENTRANT | Yang Tse | |
definition which might be defined in config.h or config-*.h files | |||
2008-07-27 | Remove explicit inclusion of our m4 files first. It was interesting as a test, | Yang Tse | |
but it breaks aclocal execution on some systems, with the following error: Can't locate object method "rel2abs" via package "File::Spec" at /usr/local/bin/aclocal line 256. | |||
2008-07-27 | Added feature in runtests.pl to select tests based on key word. | Dan Fandrich | |
2008-07-27 | Eliminate a unnecessary socket creation in Curl_getaddrinfo for an IPv4 | Dan Fandrich | |
address in an IPv6 capable libcurl. | |||
2008-07-27 | Another step towards detecting if _REENTRANT is already defined or actually | Yang Tse | |
needed, and being able to define it if appropriate for further configure tests as well as for the generated config file. | |||
2008-07-26 | - David Bau filed bug report #2026240 "CURL_READFUNC_PAUSE leads to buffer | Daniel Stenberg | |
overrun" (http://curl.haxx.se/bug/view.cgi?id=2026240) identifying two problems, and providing the fix for them: - CURL_READFUNC_PAUSE did in fact not pause the _sending_ of data that it is designed for but paused _receiving_ of data! - libcurl didn't internally set the read counter to zero when this return code was detected, which would potentially lead to junk getting sent to the server. | |||
2008-07-26 | Added test 1044 to test large file support in ftp with -I. | Dan Fandrich | |
2008-07-26 | Explicitly include our m4 files first. This might minimize the impact | Yang Tse | |
that other package's underquoted m4 function definitions have on ours. | |||
2008-07-26 | simplify multi '#' char comment line | Yang Tse | |
2008-07-26 | Add a 3 argument check for getprotobyname_r | Yang Tse | |
2008-07-26 | additional debug logging of getprotobyname_r on Tru64 and AIX | Yang Tse | |
2008-07-26 | No longer hide aclocal 'underquoted definition' warnings. | Yang Tse | |
http://sources.redhat.com/automake/automake.html#Extending-aclocal documents that starting with Automake 1.8, aclocal will warn about all underquoted calls to AC_DEFUN due to the fact that in a single aclocal run it might include more than once all .m4 files which it finds available, this includes .m4 files from other software packages. If the first argument to AC_DEFUN is underquoted and the same macro is included more than once, successive inclusions after the first one will expand the macro instead of assuming it is the same as the first one included. | |||
2008-07-25 | move reentrant.m4 to the m4 subdirectory to avoid infinite loop inclusion ↵ | Yang Tse | |
problem | |||
2008-07-24 | add checks for strtok_r and getprotobyname_r | Yang Tse | |
2008-07-24 | Another step towards detecting if _REENTRANT is already defined or actually | Yang Tse | |
needed, and being able to define it if appropriate for further configure tests as well as for the generated config file. Introduced reentrant.m4 intended for our reentrant related autotools/m4 macros. | |||
2008-07-24 | ignore curllib.vcproj | Yang Tse | |
2008-07-24 | Changed the long logfile elision code in runtests.pl to properly handle | Dan Fandrich | |
lines ending in \r. | |||
2008-07-23 | Mention that the test harness can't check every possible feature. | Dan Fandrich | |
2008-07-23 | Eliminated references to TRUE and FALSE since those identifiers aren't | Dan Fandrich | |
defined by the libcurl API. Also changed curl_easy_setopt examples to pass longs where appropriate. | |||
2008-07-23 | - I went over the curl_easy_setopt man page and replaced most references to | Daniel Stenberg | |
non-zero with the fixed value of 1. We should strive at making options support '1' for enabling them mentioned explicitly, as that then will allow us for to extend them in the future without breaking older programs. | |||
2008-07-23 | Simplified Minix compile instructions and added some special cases. | Dan Fandrich | |
2008-07-23 | reorder argument number detection for getservbyport_r to | Yang Tse | |
actually verify if the test is properly working | |||
2008-07-22 | cleanup duplicate line | Yang Tse | |
2008-07-22 | Make sure that configure process tests are done with the same _REENTRANT | Yang Tse | |
setting as the one actually used when finally building the library. | |||
2008-07-22 | checks for gethostbyaddr_r with 7 and 8 args now also done with -D_REENTRANT | Yang Tse | |
checks for gethostbyname_r with 5 and 6 args now also done with -D_REENTRANT | |||
2008-07-22 | minor reordering in OS/400 config/setup files | Yang Tse | |
2008-07-21 | Change recvfrom's sixth argument data type to the 'historically standard' 'int' | Yang Tse | |
data type for systems where this sixth argument is prototyped as a void pointer. Start of thread: http://curl.haxx.se/mail/lib-2008-07/0153.html | |||
2008-07-21 | Undefine 'byte' due to dict.c. | Gisle Vanem | |
2008-07-21 | use prototypes to improve getservbyport_r detection | Yang Tse | |
2008-07-21 | fix compiler warning: implicit conversion from "long" to "int" | Yang Tse | |
2008-07-21 | fix compiler warning: comparison between signed and unsigned | Yang Tse | |
2008-07-21 | Adjust recvfrom's sixth arg data type definition for NetWare (LIBC) | Yang Tse | |
2008-07-21 | Use the sreadfrom() wrapper to replace recvfrom() in our code. | Yang Tse | |
2008-07-21 | when recvfrom prototype uses a void pointer for arguments 2, 5 or 6 this will | Yang Tse | |
now cause the definition of RECVFROM_TYPE_ARG2_IS_VOID, RECVFROM_TYPE_ARG5_IS_VOID or RECVFROM_TYPE_ARG6_IS_VOID, as appropriate. | |||
2008-07-20 | Adjust DEC/Compaq C compiler settings | Yang Tse | |
2008-07-20 | Remove showing additional info needed to debug configure | Yang Tse | |
failure to properly detect recvfrom arg types on Solaris | |||
2008-07-20 | Added "pointer to void" as another data type to check for the sixth argument of | Yang Tse | |
function recvfrom as a result of the info additionally logged when running on a Solaris system. The compiler error showed that the prototype being used on Solaris was the one declared in line 427 of "/usr/include/sys/socket.h" as: function(int, pointer to void, unsigned int, int, pointer to struct sockaddr, pointer to void) returning int | |||
2008-07-19 | Temporarily show additional info needed to debug configure | Yang Tse | |
failure to properly detect recvfrom arg types on Solaris | |||
2008-07-19 | Adjust DEC/Compaq C compiler settings | Yang Tse | |
2008-07-18 | README.OS400 update for new string options. | Patrick Monnerat | |
2008-07-18 | README.OS400 update for new string options. | Patrick Monnerat | |
2008-07-17 | Fixed the XML syntax of a few test files. | Dan Fandrich | |
2008-07-17 | RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now defined | Yang Tse | |
to the data type pointed by its respective argument and not the pointer type. | |||
2008-07-16 | fix comment | Yang Tse | |
2008-07-16 | Configure process now checks availability of recvfrom() socket function and | Yang Tse | |
finds out its return type and the types of its arguments. Added definitions for non-configure systems config files, and introduced macro sreadfrom which will be used on udp sockets as a recvfrom() wrapper. |