Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 some debug info | Yang Tse | |
2006-07-01 | Get some debug info | Yang Tse | |
2006-07-01 | Avoid shell globbing | Yang Tse | |
2006-07-01 | Get qualifier of arg 1 for getnameinfo apart. Take 3. | Yang Tse | |
2006-07-01 | Get qualifier of arg 1 for getnameinfo apart. | Yang Tse | |
2006-06-30 | Remove experimental notice from CURL_CHECK_FUNC_GETNAMEINFO | Yang Tse | |
2006-04-19 | detect ICC and pass on "-we 147" so that the configure checks for function | Daniel Stenberg | |
arguments work properly - and the option is not harmful for the rest of the curl build either! | |||
2006-01-18 | configure no longer warns on "missing" if the current path contains a space | 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 | added our standard source header | Daniel Stenberg | |
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-12-16 | More quotes | Yang Tse | |
2005-12-16 | Fix copy paste bug | Yang Tse | |
2005-12-16 | Test CURL_CHECK_TYPE_SOCKLEN_T | Yang Tse | |
2005-12-16 | Oops. Wrong double quotes | Yang Tse | |
2005-12-16 | Experimental check for socklen_t CURL_CHECK_TYPE_SOCKLEN_T | Yang Tse | |
2005-12-15 | Tests to check the availability of compilable and | Yang Tse | |
valid windows.h winsock.h winsock2.h and ws2tcpip.h header files: CURL_CHECK_HEADER_WINDOWS CURL_CHECK_HEADER_WINSOCK CURL_CHECK_HEADER_WINSOCK2 CURL_CHECK_HEADER_WS2TCPIP | |||
2005-12-14 | Some preprocessors have problems if the # character isn't at position 1. | Yang Tse | |
2005-12-14 | Determine the correct type to be passed to four of the `getnameinfo' ↵ | Yang Tse | |
function's arguments, and define those types in `GETNAMEINFO_TYPE_ARG2', `GETNAMEINFO_TYPE_ARG46', and `GETNAMEINFO_TYPE_ARG7'. | |||
2005-11-12 | on windows (mingw32) the sockaddr_storage struct is in winsock2.h | Daniel Stenberg | |
2005-08-19 | removed the unreachable code warning from gcc debug builds, even the most | Daniel Stenberg | |
recent gcc versions give far too many false positives for this to be valuable | |||
2005-08-19 | removed some inaccurate comments about the TYPE_IN_ADDR_T check | Daniel Stenberg | |
2005-07-20 | Add -Wdeclaration-after-statement to gcc to detect accidental C99-style | Dan Fandrich | |
variable declarations. | |||
2005-06-30 | Detect (or at least infer) glibc-style strerror_r even when cross-compiling. | Dan Fandrich | |
2005-05-18 | adjusted the strerror_r test more, use _REENTRANT instead of _THREAD_SAFE | Daniel Stenberg | |
when looking for the prototype | |||
2005-05-18 | The configure check for strerror_r() failed to detect the proper API at | Daniel Stenberg | |
times, like on my HP-UX 10.20 tests. And then lib/strerror.c badly assumed the glibc version if the posix define wasn't set (since it _had_ found a strerror_r). | |||
2005-05-02 | Sort of "fixed" KNOWN_BUGS #4: curl now builds IPv6 enabled on AIX 4.3. At | Daniel Stenberg | |
least it should no longer cause a compiler error. However, it does not have AI_NUMERICHOST so we cannot getaddrinfo() any numerical addresses with it (we use that for FTP PORT/EPRT)! So, I modified the configure check that checks if the getaddrinfo() is working, to use AI_NUMERICHOST since then it'll fail on AIX 4.3 and it will automatically build with IPv6 support disabled. | |||
2005-05-02 | Now configure checks for struct sockaddr_storage and the ftp code tries | Daniel Stenberg | |
to survive without it if not found. AIX 4.3 targetted adjustment. | |||
2005-03-22 | When cross-compiling, we do some better checking for the NI_WITHSCOPEID ↵ | Daniel Stenberg | |
option instead of just assuming it is present. | |||
2005-03-15 | Finally fixed the LDAP library searching bug on libtool ver. 1.5 | Dan Fandrich | |