Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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-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-01-09 | Alexander Lazic improved the getservbyport_r() configure check. | Daniel Stenberg | |
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-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 ioctlsocket detection | Yang Tse | |
2005-12-20 | fix closing parentheses | Daniel Stenberg | |
2005-12-20 | Fix quoting | Yang Tse | |
2005-12-20 | Use native type SOCKET instead of int when testing functionality of ↵ | Yang Tse | |
ioctlsocket on Windows | |||
2005-12-19 | Ooops | Yang Tse | |
2005-12-19 | Add checking for type DWORD as argument 4 and 6 of getnameinfo | Yang Tse | |
2005-12-19 | Adjust more windows header includes | Yang Tse | |
2005-12-19 | Fix guard detection of _WIN32_WINNT for MingW in CURL_FUNC_GETNAMEINFO_ARGTYPES | Yang Tse | |
2005-12-19 | Add check for 'unsigned int' as type of arguments 4 and 6 of getnameinfo | Yang Tse | |
2005-12-18 | When checking the type of the first argument of getnameinfo do it in the | Yang Tse | |
following order: 'struct sockaddr *' 'const struct sockaddr *' 'void *'. | |||
2005-12-18 | MingW guards getnameinfo, getaddrinfo and freeaddrinfo with _WIN32_WINNT >= ↵ | Yang Tse | |
0x0501 | |||
2005-12-17 | Check first arg of getnameinfo with and without const qualifier. | Yang Tse | |
2005-12-17 | Avoid breaking configure due to CURL_FUNC_GETNAMEINFO_ARGTYPES failure, ↵ | Yang Tse | |
since at this point nothing depends on it. | |||
2005-12-17 | const qualifier in getnameinfo check | Yang Tse | |
2005-12-16 | Since there is no proof of the existence of a platform which would | Yang Tse | |
justify checking for socklen_t in more than one function, the code used to find a valid socklen_t replacement is simplified back. The only function that will be used to find a socklen_t replacement is getpeername, as it has been since revision 1.4 of curl/acinclude.m4 | |||
2005-12-16 | TYPE_SOCKLEN_T completely replaced by CURL_CHECK_TYPE_SOCKLEN_T. | Yang Tse | |
CURL_FUNC_GETNAMEINFO_ARGTYPES now also checks first argument. All related changes taken to cares configuration scripts. | |||
2005-09-18 | Added constants that will be used by ares_getaddrinfo. Made ares_getnameinfo ↵ | Dominick Meglio | |
use the reentrant getservbyport (getservbyport_r) if it isavailable to ensure it works properly in a threaded environment | |||
2005-09-10 | Use the AC_CHECK_MEMBER() function for check struct members instead of | Daniel Stenberg | |
inventing and providing our own. Hopefully this solves a HP-UX 11.00 problem. | |||
2005-06-02 | William Ahern: | Daniel Stenberg | |
Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a read event can come back from poll() on a valid SOCK_DGRAM socket but recv(2) will still block. This patch doesn't ignore EAGAIN in read_udp_packets(), though maybe it should. (This patch was edited by Daniel Stenberg and a new configure test was added (imported from curl's configure) to properly detect what non-blocking socket approach to use.) | |||
2005-05-16 | Added ares_getnameinfo which mimics the getnameinfo API | Dominick Meglio | |
2005-03-11 | Replace AC_TRY_RUN() with AC_EGREP_CPP() when checking for constants to | Daniel Stenberg | |
work fine with cross-compiled builds. | |||
2005-03-10 | Dominick Meglio added ares_parse_aaaa_reply.c and did various adjustments. The | Daniel Stenberg | |
first little steps towards IPv6 support! | |||
2004-02-27 | updated the debug option function from curl's acinclude.m4 | Daniel Stenberg | |
2004-02-25 | added the better debug option logic from curl by adding acinclude.m4 to the | Daniel Stenberg | |
configure stuff |