Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-07 | Finally get rid of CURL_CHECK_HEADERS_ONCE since it adds very little value ↵ | Yang Tse | |
and has portability issues. Change some shell if...then...fi tests into case...esac tests which demand less resources. | |||
2006-07-07 | Substitution of the literal '-' is only done if it's the first or last ↵ | Yang Tse | |
character. | |||
2006-07-07 | Using backslashes and slashes in the strings of the sed 'y' command shall be ↵ | Yang Tse | |
avoided since its interpretation is not the same across platforms. Now we use the sed 's' command with a bracket expression. | |||
2006-07-07 | Fix excessive escaping. | Yang Tse | |
2006-07-07 | Fix CURL_CHECK_HEADERS_ONCE | Yang Tse | |
2006-07-06 | Fix MinGW/MSYS support in CURL_CHECK_FUNC_RECV and CURL_CHECK_FUNC_SEND. | Yang Tse | |
2006-07-05 | Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows ↵ | Yang Tse | |
headers when compiled with Cygwin in POSIX emulation mode. | |||
2006-07-04 | Use a more descriptive var name. | Yang Tse | |
2006-07-04 | Get qualifier of arg 2 for send() apart into SEND_QUAL_ARG2. | Yang Tse | |
2006-07-04 | Platforms that don't have/run configure need default values in their config ↵ | Yang Tse | |
files for: HAVE_GETNAMEINFO, GETNAMEINFO_QUAL_ARG1, GETNAMEINFO_TYPE_ARG1, GETNAMEINFO_TYPE_ARG2, GETNAMEINFO_TYPE_ARG46, GETNAMEINFO_TYPE_ARG7 HAVE_RECV, RECV_TYPE_ARG1, RECV_TYPE_ARG2, RECV_TYPE_ARG3, RECV_TYPE_ARG4, RECV_TYPE_RETV HAVE_SEND, SEND_TYPE_ARG1, SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4, SEND_TYPE_RETV | |||
2006-07-04 | Find out return types and argument types for functions recv() and send() at ↵ | Yang Tse | |
configuration stage. | |||
2006-07-03 | Use CURL_CHECK_FUNC_GETNAMEINFO results in CURL_CHECK_NI_WITHSCOPEID | Yang Tse | |
2006-07-02 | Make CURL_CHECK_NI_WITHSCOPEID actually try to compile NI_WITHSCOPEID when ↵ | Yang Tse | |
cross-compiling. | |||
2006-07-02 | Fix shell globbing in CURL_CHECK_FUNC_GETNAMEINFO | Yang Tse | |
2006-07-02 | Fix shell globbing in CURL_CHECK_FUNC_GETNAMEINFO | Yang Tse | |
2006-07-01 | Get qualifier of arg 1 for getnameinfo apart. Take 2. | Yang Tse | |
2006-06-30 | Get qualifier of arg 1 for getnameinfo apart. | Yang Tse | |
2006-06-30 | Remove experimental notice from CURL_CHECK_FUNC_GETNAMEINFO | Yang Tse | |
2006-06-26 | include config-win32.h in release archives | Daniel Stenberg | |
2006-06-24 | 1.3.1 | Daniel Stenberg | |
2006-06-19 | Remove "big endian" DNS section and RR data integer parser macros from | William Ahern | |
ares_dns.h, which break c-ares on my Sparc64. Bit-wise operations in C operate on logical values. And in any event the octets are already in big-endian (aka network) byte order so they're being reversed (thus the source of the breakage). | |||
2006-06-19 | Handle EAGAIN/EWOULDBLOCK readiness errors, which can occur for both TCP and | William Ahern | |
UDP even when a poll(2) or select(2) suggest otherwise. | |||
2006-05-24 | Copied the NO_UNDEFINED magic from libcurl to make this build fine again with | Daniel Stenberg | |
libtool cross-compiled on linux with mingw32 | |||
2006-05-10 | Bram Matthys brought my attention to a libtool peculiarity where detecting | Daniel Stenberg | |
things such as C++ compiler actually is a bad thing and since we don't need that detection I added a work-around, much inspired by a previous patch by Paolo Bonzini. This also shortens the configure script quite a lot. | |||
2006-05-05 | two more contributors | Daniel Stenberg | |
2006-05-03 | moved the curl_off_t check to within the --enable-debug block where it ↵ | Daniel Stenberg | |
belongs since it is a somewhat ugly hack | |||
2006-05-03 | Nick Mathewson added the ARES_OPT_SOCK_STATE_CB option that when set makes | Daniel Stenberg | |
c-ares call a callback on socket state changes. A better way than the ares_getsock() to get full control over the socket state. | |||
2006-04-20 | removed -fpack-struct because gcc4 seems to know its obsolete and warns... | Gunter Knauf | |
2006-04-17 | minor Makefile fix - let's go 2006; | Gunter Knauf | |
use correct version var. | |||
2006-01-09 | Alexander Lazic improved the getservbyport_r() configure check. | Daniel Stenberg | |
2006-01-06 | buildconf fixes | Daniel Stenberg | |
2006-01-06 | Use $ACLOCAL_FLAGS too, pointed out by Alexander Lazic | Daniel Stenberg | |
2006-01-05 | James Bursa fixes: find the hosts file on RISC OS, and made it build with | Daniel Stenberg | |
newer gcc versions that no longer defines "riscos". | |||
2006-01-05 | Yang Tse has been helping out | Daniel Stenberg | |
2006-01-04 | Added ares_getsock.obj. | Gisle Vanem | |
2006-01-02 | we're working on 1.3.1 (or more) | Daniel Stenberg | |
2005-12-22 | This function was added in c-ares [version] | Daniel Stenberg | |
2005-12-22 | added ares_getsock() | Daniel Stenberg | |
2005-12-22 | Added ares_getsock() to extract sockets to wait for action on, without being | Daniel Stenberg | |
limited to select(). | |||
2005-12-21 | Checking for function getnameinfo and its arguments is finally | Yang Tse | |
done in one single function CURL_CHECK_FUNC_GETNAMEINFO which will only define HAVE_GETNAMEINFO if the function has been found AND the type of its arguments has been properly been detected | |||
2005-12-21 | Undefine HAVE_GETNAMEINFO if unable to find | Yang Tse | |
proper types to use for getnameinfo args | |||
2005-12-21 | Undefine HAVE_GETNAMEINFO if unable to find | Yang Tse | |
proper types to use for getnameinfo args | |||
2005-12-21 | Make sure we're using 'c-ares' sources and not 'ares' ones. | Yang Tse | |
2005-12-20 | In CURL_FUNC_GETNAMEINFO_ARGTYPES, when cross-compiling a windows | Yang Tse | |
target use calling convention WSAAPI for getnameinfo() prototype. Checking type DWORD as argument 4 and 6 of getnameinfo not needed. | |||
2005-12-20 | Fix PellesC warning. | Gisle Vanem | |
2005-12-20 | Changes for PellesC for Win32. It needs <unistd.h> for 'ssize_t'. Hence the | Gisle Vanem | |
rearrangement in ares_process.c. | |||
2005-12-20 | fix ioctlsocket detection | Yang Tse | |
2005-12-20 | Fix, header checks must be done before using its results. | Yang Tse | |
2005-12-20 | fix closing parentheses | Daniel Stenberg | |
2005-12-20 | use AC_PROG_LIBTOOL after AC_DISABLE_SHARED | Daniel Stenberg | |