Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-24 | - Based on a patch by Vlad Grachov, libcurl now uses a new libssh2 0.19 | Daniel Stenberg | |
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! | |||
2008-11-18 | provide a common PATH_SEPARATOR check method which is required by | Yang Tse | |
upcomming work to support the broadest range of Autoconf versions | |||
2008-11-18 | check for gethostbyaddr and gethostbyname as it is done for other functions | Yang Tse | |
2008-11-16 | trim down configure script size | Yang Tse | |
2008-11-13 | Refactor configure script detection of functions used to set sockets into | Yang Tse | |
non-blocking mode, and decouple function detection from function capability. | |||
2008-11-08 | check for getifaddrs and freeifaddrs as it is done for other functions | Yang Tse | |
2008-10-30 | check for freeaddrinfo() at configuration phase | Yang Tse | |
2008-10-29 | make CHECK_FUNC_GETADDRINFO_UNFREEABLE_AI_ADDR | Yang Tse | |
and CHECK_FUNC_GETADDRINFO_UNFREEABLE_AI_CANONNAME internal to CHECK_FUNC_GETADDRINFO | |||
2008-10-28 | Initial attempt to detect at configuration time if the getaddrinfo() | Yang Tse | |
function returns an addrinfo with an unfreeable ai_canonname member ptr. | |||
2008-10-28 | Initial attempt to detect at configuration time if the getaddrinfo() | Yang Tse | |
function returns an addrinfo with an unfreeable ai_addr member ptr. | |||
2008-10-22 | remove from configure.ac temporary magic for the icc seg-fault issue | Yang Tse | |
2008-10-21 | some more temporary magic for the icc seg-fault issue | Yang Tse | |
2008-10-20 | some more temporary magic for the icc seg-fault issue | Yang Tse | |
2008-10-15 | Ensure that shell variable contents which have active meaning | Yang Tse | |
to the shell echo command are not interpreted when trying to remove extra whitespace from shell variable content. | |||
2008-10-09 | Fixed the --interface option to work with IPv6 connections on glibc | Dan Fandrich | |
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. | |||
2008-10-07 | Initial attempt to support configure's --(dis|en)able-optimize | Yang Tse | |
option to specify dis(activation) of compiler optimizations. If option is specified, it will be honored independant of the --(dis|en)able-debug option. | |||
2008-10-02 | Initial attempt to support configure's --(dis|en)able-warnings | Yang Tse | |
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. | |||
2008-09-30 | now compiler warnings are activated for all gcc builds, not only debug ones. | Yang Tse | |
2008-09-30 | Use CFLAGS for icc linker options instead of LDFLAGS, | Yang Tse | |
otherwise gethostbyname() is not detected. | |||
2008-09-29 | spell! | Daniel Stenberg | |
2008-09-29 | - Daniel Egger provided a patch that allows you to disable proxy support in | Daniel Stenberg | |
libcurl to somewhat reduce the size of the binary. Run configure --disable-proxy. | |||
2008-09-29 | use ac_cv_compiler and ac_cv_compiler_num to keep compiler ID and version number | Yang Tse | |
2008-09-29 | Temporary icc adjustment: | Yang Tse | |
Disable floating point optimizations | |||
2008-09-26 | siginterrupt, signal and sigsetjmp checks | Yang Tse | |
2008-09-24 | HAVE_INET_PTON will only be defined when an IPv6 capable working | Yang Tse | |
inet_pton function is available. | |||
2008-09-24 | configure script now checks availability of the inet_ntop() function, | Yang Tse | |
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. | |||
2008-09-24 | temporarily enable CURL_CHECK_FUNC_INET_NTOA_R | Yang Tse | |
2008-09-24 | ntoa() and inet_ntoa_r() no longer used | Yang Tse | |
2008-09-22 | icc adjustments for icc 9.0 and prior versions: | Yang Tse | |
Disable remark #279: controlling expression is constant Remark triggered mostly on va_arg() and FD_ZERO() macros. | |||
2008-09-20 | fix regression in configure script which affected OpenSSL builds on MSYS | Yang Tse | |
2008-09-19 | configure script now checks availability of the alarm() function | Yang Tse | |
2008-09-19 | icc adjustments: | Yang Tse | |
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. | |||
2008-09-18 | icc adjustments | Yang Tse | |
2008-09-17 | Fixed a syntax error | Dan Fandrich | |
2008-09-17 | improve detection of gethostbyaddr_r() and gethostbyname_r() | Yang Tse | |
2008-09-17 | improve detection of getservbyport_r() | Yang Tse | |
2008-09-17 | On Linux Intel's icc uses gcc's header files, so | Yang Tse | |
we select ANSI C89 dialect plus GNU extensions. | |||
2008-09-17 | improve detection of gethostname(), localtime_r() and strstr() | Yang Tse | |
2008-09-16 | rearrange to allow internal/private use of ares_writev to any system | Yang Tse | |
that lacks the writev function. | |||
2008-09-15 | improve detection of: | Yang Tse | |
strcasecmp() strcasestr() strcmpi() stricmp() strlcat() strncasecmp() strncmpi() strnicmp() | |||
2008-09-12 | improve detection of fdopen() and strerror_r() | Yang Tse | |
2008-09-10 | Checked in some code improvements and minor fixes that I discovered in the | Dan Fandrich | |
FreeBSD ports system. | |||
2008-09-10 | improve detection of strdup() and ftruncate() | Yang Tse | |
2008-09-10 | improve detection of sigaction() and strtok_r() | Yang Tse | |
2008-09-10 | icc adjustments | Yang Tse | |
2008-09-10 | improve detection of gmtime_r() and strtoll() | Yang Tse | |
2008-09-09 | icc adjustments | Yang Tse | |
2008-09-08 | Select strict ANSI C89 conformance for icc | Yang Tse | |
2008-09-02 | - Keith Mok added supported_protocols and supported_features to the pkg-config | Daniel Stenberg | |
file for libcurl, and while doing that fix he unified with curl-config.in how the supported protocols and features are extracted and used, so both those tools should now always be synced. | |||
2008-08-26 | Windows build targets don't use the 'SONAME' mechanism. | Yang Tse | |