summaryrefslogtreecommitdiff
path: root/acinclude.m4
Commit message (Collapse)AuthorAgeFilesLines
* Added last-resort dynamic library names.Dan Fandrich2007-02-131-0/+4
|
* Properly use libtool macros to fix OpenLDAP library name detection on Darwin.Dan Fandrich2007-01-311-1/+1
|
* 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.
* Added a check in configure that simply tries to run a program (not whenDaniel Stenberg2006-10-161-0/+34
| | | | | | | | cross-compiling) in order to detect problems with run-time libraries that otherwise would occur when the sizeof tests for curl_off_t would run and thus be much more confusing to users. The check of course should run after all lib-checks are done and before any other test is used that would run an executable built for testing-purposes.
* 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/+98
| | | | 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-47/+70
|
* Make CURL_CHECK_NI_WITHSCOPEID actually try to compile NI_WITHSCOPEID when ↵Yang Tse2006-07-021-78/+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-29/+24
|
* Get some debug infoYang Tse2006-07-011-9/+24
|
* Get some debug infoYang Tse2006-07-011-0/+11
|
* Avoid shell globbingYang Tse2006-07-011-4/+4
|
* Get qualifier of arg 1 for getnameinfo apart. Take 3.Yang Tse2006-07-011-2/+2
|
* Get qualifier of arg 1 for getnameinfo apart.Yang Tse2006-07-011-3/+22
|
* Remove experimental notice from CURL_CHECK_FUNC_GETNAMEINFOYang Tse2006-06-301-2/+0
|
* detect ICC and pass on "-we 147" so that the configure checks for functionDaniel Stenberg2006-04-191-12/+33
| | | | | arguments work properly - and the option is not harmful for the rest of the curl build either!
* configure no longer warns on "missing" if the current path contains a spaceDaniel Stenberg2006-01-181-0/+16
|
* 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
|
* added our standard source headerDaniel Stenberg2005-12-201-1/+22
|
* 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/+10
|
* 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-19/+99
|
* 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.