summaryrefslogtreecommitdiff
path: root/ares/acinclude.m4
Commit message (Collapse)AuthorAgeFilesLines
* Sync PLATFORM_AIX_V3 detection and CURL_CC_DEBUG_OPTS()Yang Tse2007-10-181-2/+2
| | | | icc warning level with libcurl's
* Cleanup. Warnings related with FD_SET, FD_ISSET, and FD_ZERO macrosYang Tse2007-04-031-10/+0
| | | | are not icc 9.0 specific.
* attempt to keep message length below 80 charsYang Tse2007-03-221-2/+2
|
* remove code superceeded by the new method used to forceYang Tse2007-03-081-36/+0
| | | | | libtool to skip C++ and Fortran checks in patchset: http://cool.haxx.se/cvs.cgi/curl/ares/configure.ac.diff?r1=1.60&r2=1.64
* icc 9.0 when compiling its generated code for its own FD_SET,Yang Tse2007-02-151-0/+10
| | | | | | | 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"
* *) Remove duplicate declaration of TYPE_SOCKADDR_STORAGEYang Tse2007-02-071-66/+81
| | | | *) Update CURL_CC_DEBUG_OPTS from curl's script
* Added a check in configure that verifies if <signal.h> is available,Yang Tse2006-11-221-0/+42
| | | | | | | | | | | | defining HAVE_SIGNAL_H if the header is available. Added a check in configure that tests if the sig_atomic_t type is available, defining HAVE_SIG_ATOMIC_T if it is available. Providing a suitable default in setup_once.h if not available. Added a check in configure that tests if the sig_atomic_t type is already defined as volatile, defining HAVE_SIG_ATOMIC_T_VOLATILE if it is available and already defined as volatile.
* Check for struct timeval at configuration timeYang Tse2006-10-131-0/+59
|
* Being unable to link or find out recv() or send() args types is a fatal error.Yang Tse2006-08-041-4/+6
|
* Avoid the risk of a false positive detection of MSG_NOSIGNAL when cross ↵Yang Tse2006-07-311-0/+15
| | | | compiling a Windows target.
* First step trying to avoid the multiple header inclusion and recursion ↵Yang Tse2006-07-281-0/+33
| | | | | | nightmare. Reintroduce checking for HAVE_MSG_NOSIGNAL in configure script, so that we don't depend on header inclusion order for a valid check.
* Simplify check for NEED_MALLOC_H, and make more explicit that NEED_MALLOC_H ↵Yang Tse2006-07-251-1/+1
| | | | shall be defined if <malloc.h> header file must be included even when including <stdlib.h>.
* Define NEED_MALLOC_H if including <stdlib.h> is not enough for proper ↵Yang Tse2006-07-111-0/+51
| | | | compilation and <malloc.h> must also be included.
* Finally get rid of CURL_CHECK_HEADERS_ONCE since it adds very little value ↵Yang Tse2006-07-071-52/+45
| | | | | | and has portability issues. Change some shell if...then...fi tests into case...esac tests which demand less resources.
* Substitution of the literal '-' is only done if it's the first or last ↵Yang Tse2006-07-071-1/+1
| | | | character.
* Using backslashes and slashes in the strings of the sed 'y' command shall be ↵Yang Tse2006-07-071-1/+1
| | | | | | avoided since its interpretation is not the same across platforms. Now we use the sed 's' command with a bracket expression.
* Fix excessive escaping.Yang Tse2006-07-071-1/+1
|
* Fix CURL_CHECK_HEADERS_ONCEYang Tse2006-07-071-5/+6
|
* Fix MinGW/MSYS support in CURL_CHECK_FUNC_RECV and CURL_CHECK_FUNC_SEND.Yang Tse2006-07-061-10/+14
|
* Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows ↵Yang Tse2006-07-051-2/+97
| | | | headers when compiled with Cygwin in POSIX emulation mode.
* Use a more descriptive var name.Yang Tse2006-07-041-6/+6
|
* Get qualifier of arg 2 for send() apart into SEND_QUAL_ARG2.Yang Tse2006-07-041-7/+41
|
* Find out return types and argument types for functions recv() and send() at ↵Yang Tse2006-07-041-0/+192
| | | | configuration stage.
* Use CURL_CHECK_FUNC_GETNAMEINFO results in CURL_CHECK_NI_WITHSCOPEIDYang Tse2006-07-031-10/+70
|
* Make CURL_CHECK_NI_WITHSCOPEID actually try to compile NI_WITHSCOPEID when ↵Yang Tse2006-07-021-0/+73
| | | | cross-compiling.
* Fix shell globbing in CURL_CHECK_FUNC_GETNAMEINFOYang Tse2006-07-021-2/+0
|
* Fix shell globbing in CURL_CHECK_FUNC_GETNAMEINFOYang Tse2006-07-021-1/+22
|
* Get qualifier of arg 1 for getnameinfo apart. Take 2.Yang Tse2006-07-011-8/+15
|
* Get qualifier of arg 1 for getnameinfo apart.Yang Tse2006-06-301-0/+12
|
* Remove experimental notice from CURL_CHECK_FUNC_GETNAMEINFOYang Tse2006-06-301-2/+0
|
* Bram Matthys brought my attention to a libtool peculiarity where detectingDaniel Stenberg2006-05-101-0/+36
| | | | | | 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.
* Alexander Lazic improved the getservbyport_r() configure check.Daniel Stenberg2006-01-091-3/+3
|
* Checking for function getnameinfo and its arguments is finallyYang Tse2005-12-211-47/+115
| | | | | | 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
* Undefine HAVE_GETNAMEINFO if unable to findYang Tse2005-12-211-1/+1
| | | | proper types to use for getnameinfo args
* Undefine HAVE_GETNAMEINFO if unable to findYang Tse2005-12-211-0/+3
| | | | proper types to use for getnameinfo args
* In CURL_FUNC_GETNAMEINFO_ARGTYPES, when cross-compiling a windowsYang Tse2005-12-201-5/+7
| | | | | target use calling convention WSAAPI for getnameinfo() prototype. Checking type DWORD as argument 4 and 6 of getnameinfo not needed.
* fix ioctlsocket detectionYang Tse2005-12-201-2/+4
|
* fix closing parenthesesDaniel Stenberg2005-12-201-1/+2
|
* Fix quotingYang Tse2005-12-201-4/+4
|
* Use native type SOCKET instead of int when testing functionality of ↵Yang Tse2005-12-201-1/+1
| | | | ioctlsocket on Windows
* OoopsYang Tse2005-12-191-0/+11
|
* Add checking for type DWORD as argument 4 and 6 of getnameinfoYang Tse2005-12-191-1/+1
|
* Adjust more windows header includesYang Tse2005-12-191-5/+154
|
* Fix guard detection of _WIN32_WINNT for MingW in CURL_FUNC_GETNAMEINFO_ARGTYPESYang Tse2005-12-191-1/+1
|
* Add check for 'unsigned int' as type of arguments 4 and 6 of getnameinfoYang Tse2005-12-191-1/+1
|
* When checking the type of the first argument of getnameinfo do it in theYang Tse2005-12-181-1/+1
| | | | following order: 'struct sockaddr *' 'const struct sockaddr *' 'void *'.
* MingW guards getnameinfo, getaddrinfo and freeaddrinfo with _WIN32_WINNT >= ↵Yang Tse2005-12-181-0/+4
| | | | 0x0501
* Check first arg of getnameinfo with and without const qualifier.Yang Tse2005-12-171-6/+3
|
* Avoid breaking configure due to CURL_FUNC_GETNAMEINFO_ARGTYPES failure, ↵Yang Tse2005-12-171-1/+1
| | | | since at this point nothing depends on it.
* const qualifier in getnameinfo checkYang Tse2005-12-171-2/+2
|