summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* - Use libssh2_version() to present the libssh2 version in case the libssh2Daniel Stenberg2009-03-131-0/+3
| | | | library is found to support it.
* update the embedded copyright yearDaniel Stenberg2009-03-111-1/+1
|
* Fixed a problem with m4 quoting in the OpenSSL configure check reportedDan Fandrich2009-03-041-1/+1
| | | | by Daniel Johnson.
* check for poll() as it is done for other functionsYang Tse2009-02-131-40/+1
|
* Fixed NTLM on curl-config --features with GnuTLSDan Fandrich2009-02-121-1/+1
|
* Added support for Digest and NTLM authentication using GnuTLS.Dan Fandrich2009-02-121-1/+1
|
* Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGSDan Fandrich2009-02-041-2/+5
| | | | (respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
* - Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665)Daniel Stenberg2009-01-111-48/+61
| | | | | | | by Daniel Black, I've now added magic to the configure script that makes it use pkg-config to detect gnutls details as well if the existing method (using libgnutls-config) fails. While doing this, I cleaned up and unified the pkg-config usage when detecting openssl and nss as well.
* changed HAVE_SIN6_SCOPE_ID define to HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID since ↵Gunter Knauf2008-12-301-3/+3
| | | | just found that ares already uses this define.
* added check for sin6_scope_id member in struct sockaddr_in6.Gunter Knauf2008-12-271-0/+15
|
* Further adjust a libssh2 preprocessor function-symbol definition checkYang Tse2008-11-291-4/+0
|
* - Based on a patch by Vlad Grachov, libcurl now uses a new libssh2 0.19Daniel Stenberg2008-11-241-0/+4
| | | | | | | | | function when built to support SCP and SFTP that helps the library to know in which direction a particular libssh2 operation would return EAGAIN so that libcurl knows what socket conditions to wait for before trying the function call again. Previously (and still when using libssh2 0.18 or earlier), libcurl will busy-loop in this situation when the easy interface is used!
* provide a common PATH_SEPARATOR check method which is required byYang Tse2008-11-181-0/+2
| | | | upcomming work to support the broadest range of Autoconf versions
* check for gethostbyaddr and gethostbyname as it is done for other functionsYang Tse2008-11-181-4/+3
|
* trim down configure script sizeYang Tse2008-11-161-16/+2
|
* Refactor configure script detection of functions used to set sockets intoYang Tse2008-11-131-19/+14
| | | | non-blocking mode, and decouple function detection from function capability.
* check for getifaddrs and freeifaddrs as it is done for other functionsYang Tse2008-11-081-1/+2
|
* check for freeaddrinfo() at configuration phaseYang Tse2008-10-301-0/+1
|
* make CHECK_FUNC_GETADDRINFO_UNFREEABLE_AI_ADDRYang Tse2008-10-291-2/+0
| | | | | and CHECK_FUNC_GETADDRINFO_UNFREEABLE_AI_CANONNAME internal to CHECK_FUNC_GETADDRINFO
* Initial attempt to detect at configuration time if the getaddrinfo()Yang Tse2008-10-281-0/+1
| | | | function returns an addrinfo with an unfreeable ai_canonname member ptr.
* Initial attempt to detect at configuration time if the getaddrinfo()Yang Tse2008-10-281-1/+7
| | | | function returns an addrinfo with an unfreeable ai_addr member ptr.
* remove from configure.ac temporary magic for the icc seg-fault issueYang Tse2008-10-221-11/+7
|
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-211-0/+4
|
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-201-8/+8
|
* Ensure that shell variable contents which have active meaningYang Tse2008-10-151-9/+9
| | | | | to the shell echo command are not interpreted when trying to remove extra whitespace from shell variable content.
* Fixed the --interface option to work with IPv6 connections on glibcDan Fandrich2008-10-091-0/+1
| | | | | | systems supporting getifaddrs(). Also fixed a problem where an IPv6 address could be chosen instead of an IPv4 one for --interface when it involved a name lookup.
* Initial attempt to support configure's --(dis|en)able-optimizeYang Tse2008-10-071-4/+18
| | | | | | | option to specify dis(activation) of compiler optimizations. If option is specified, it will be honored independant of the --(dis|en)able-debug option.
* Initial attempt to support configure's --(dis|en)able-warningsYang Tse2008-10-021-169/+13
| | | | | | | | | | option to specify dis(activation) of picky compiler warnings. If option is specified, it will be honored independant of the --(dis|en)able-debug option. If option is not specified, it will follow --(dis|en)able-debug setting, whose default is disabled if not specified.
* now compiler warnings are activated for all gcc builds, not only debug ones.Yang Tse2008-09-301-4/+46
|
* Use CFLAGS for icc linker options instead of LDFLAGS,Yang Tse2008-09-301-3/+3
| | | | otherwise gethostbyname() is not detected.
* spell!Daniel Stenberg2008-09-291-1/+1
|
* - Daniel Egger provided a patch that allows you to disable proxy support inDaniel Stenberg2008-09-291-0/+16
| | | | | libcurl to somewhat reduce the size of the binary. Run configure --disable-proxy.
* use ac_cv_compiler and ac_cv_compiler_num to keep compiler ID and version numberYang Tse2008-09-291-34/+49
|
* Temporary icc adjustment:Yang Tse2008-09-291-0/+2
| | | | Disable floating point optimizations
* siginterrupt, signal and sigsetjmp checksYang Tse2008-09-261-22/+3
|
* HAVE_INET_PTON will only be defined when an IPv6 capable workingYang Tse2008-09-241-10/+1
| | | | inet_pton function is available.
* configure script now checks availability of the inet_ntop() function,Yang Tse2008-09-241-0/+1
| | | | | | | and when not crosscompiling verifies if it is IPv6 capable. HAVE_INET_NTOP will only be defined when an IPv6 capable working inet_ntop function is available.
* temporarily enable CURL_CHECK_FUNC_INET_NTOA_RYang Tse2008-09-241-0/+1
|
* ntoa() and inet_ntoa_r() no longer usedYang Tse2008-09-241-2/+1
|
* icc adjustments for icc 9.0 and prior versions:Yang Tse2008-09-221-0/+4
| | | | | | Disable remark #279: controlling expression is constant Remark triggered mostly on va_arg() and FD_ZERO() macros.
* fix regression in configure script which affected OpenSSL builds on MSYSYang Tse2008-09-201-0/+18
|
* configure script now checks availability of the alarm() functionYang Tse2008-09-191-0/+1
|
* icc adjustments:Yang Tse2008-09-191-0/+4
| | | | | | | | | | | Disable remark #981: operands are evaluated in unspecified order Function calls which are triggering this remark, today, do not depend on the order of evaluation of its arguments. Disable remark #1469: "cc" clobber ignored Remark triggered on htons() and ntohs() due to glibc header files.
* icc adjustmentsYang Tse2008-09-181-0/+6
|
* Fixed a syntax errorDan Fandrich2008-09-171-2/+2
|
* improve detection of gethostbyaddr_r() and gethostbyname_r()Yang Tse2008-09-171-2/+4
|
* improve detection of getservbyport_r()Yang Tse2008-09-171-0/+1
|
* On Linux Intel's icc uses gcc's header files, soYang Tse2008-09-171-4/+3
| | | | we select ANSI C89 dialect plus GNU extensions.
* improve detection of gethostname(), localtime_r() and strstr()Yang Tse2008-09-171-3/+5
|
* rearrange to allow internal/private use of ares_writev to any systemYang Tse2008-09-161-0/+2
| | | | that lacks the writev function.