Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-19 | better select() function detection that works | Yang Tse | |
even when cross compiling a Windows target. | |||
2008-05-19 | fix socklen_t equivalent detection when cross compiling Windows target | Yang Tse | |
2008-05-19 | if WINSOCK2 API is used link with 'ws2_32', else | Yang Tse | |
if WINSOCK API is used under WinCE link with 'winsock', else if WINSOCK API is used link with 'wsock32'. | |||
2008-05-18 | on winsock systems linking is done using library 'ws2_32' when | Yang Tse | |
winsock2.h is available, and library 'winsock' is used when only winsock.h is available. | |||
2008-05-17 | minor change for wince-cegcc and wince-mingw32ce support | Yang Tse | |
2008-05-16 | removed lots of warnings | Daniel Stenberg | |
2008-05-15 | millisecond resolution support followup | Yang Tse | |
2008-05-15 | Included stdint.h to get the intptr_t type (needed on OpenBSD at least). | Dan Fandrich | |
2008-05-15 | ten days with no further response or feedback, removing: | Daniel Stenberg | |
136 - adding easy handles when using curl_multi_socket* by Markus Koetter | |||
2008-05-15 | Replaced "-DHAVE_FIONBIO" with "-DHAVE_IOCTLSOCKET". | Gisle Vanem | |
Added "-DHAVE_GETTIMEOFDAY". Trimmed lines. | |||
2008-05-15 | sync with reality | Yang Tse | |
2008-05-15 | remove compilation time generated files | Yang Tse | |
2008-05-15 | use same time source for timeout initialization and processing | Yang Tse | |
2008-05-14 | Reduced the required stack size. | Dan Fandrich | |
2008-05-14 | Move the CURLDEBUG check after setup.h so it can be set there if necessary. | Dan Fandrich | |
2008-05-14 | Improve toolchain detection for WinCE cross compilation: | Yang Tse | |
When cross compiling WinCE with the arm-wince-cegcc-gcc C compiler symbol __CEGCC__ is defined and the unix-like compatibility layer is used. For our purposes this is not a native Windows build. When cross compiling WinCE with the arm-wince-mingw32ce-gcc C compiler symbol __MINGW32CE__ is defined and the unix-like compatibility layer is not used. For our purposes this _is_ a native Windows build. | |||
2008-05-14 | remove duplicate check | Yang Tse | |
2008-05-14 | skip checks for Windows specific header files | Yang Tse | |
when build target is not a native Windows one | |||
2008-05-14 | WinCE cross compilation adjustments: | Yang Tse | |
HAVE_WINSOCK2_H shall not be defined. HAVE_WS2TCPIP_H shall not be defined. | |||
2008-05-13 | wait for all 129 bytes | Daniel Stenberg | |
2008-05-13 | Added test case 556 that uses curl_easy_send() and curl_easy_recv() | Daniel Stenberg | |
2008-05-13 | Three out of the four issues are now extinct. | Daniel Stenberg | |
2008-05-13 | - Introducing millisecond resolution support for the timeout option. See | Daniel Stenberg | |
ares_init_options()'s ARES_OPT_TIMEOUTMS. | |||
2008-05-13 | also ignore this | Yang Tse | |
2008-05-13 | Added curl_easy_recv & curl_easy_send Symbian exports. | Dan Fandrich | |
Cleaned up Symbian files. | |||
2008-05-13 | also ignore this | Yang Tse | |
2008-05-13 | ignore this compilation time generated files | Yang Tse | |
2008-05-13 | don't keep in CVS this compilation time generated file | Yang Tse | |
2008-05-13 | add MSVC6 project for acountry sample program | Yang Tse | |
2008-05-13 | update MSVC6 projects to use the multithreaded DLL runtime library | Yang Tse | |
2008-05-13 | add MSVC6 project for acountry sample program | Yang Tse | |
2008-05-12 | - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send | Daniel Stenberg | |
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used. | |||
2008-05-12 | skip libtool C++ preprocessor compiler and linker checks | Yang Tse | |
2008-05-12 | ignore libcares.pc | Yang Tse | |
2008-05-12 | configure script will now define HAVE_CLOCK_GETTIME_MONOTONIC symbol only | Yang Tse | |
when function clock_gettime() is available and the monotonic timer is also available. Otherwise, in some cases, librt or libposix4 could be used for linking even when finally not using the clock_gettime() function due to lack of the monotonic clock. | |||
2008-05-10 | fix syntax error: missing semicolon | Yang Tse | |
2008-05-10 | Add library checking for clock_gettime() support | Yang Tse | |
2008-05-09 | Internal time differences now use monotonic time source if available. | Yang Tse | |
This also implies the removal of the winmm.lib dependency for WIN32. | |||
2008-05-09 | Use monotonic time source if available. | Yang Tse | |
2008-05-09 | Removed AC_PROG_CC_STDC again. It enforces C99/gnu99 stdandard which is too | Daniel Stenberg | |
liberal for me. Also, autoconf 2.61 and earlier doesn't work with icc 10.1 for this macro. (2.62 confirmed to work though). See discusson on the mailing list starting here: http://daniel.haxx.se/projects/c-ares/mail/c-ares-archive-2008-05/0001.shtml | |||
2008-05-09 | - Stefan Krause reported a busy-looping case when using the multi interface | Daniel Stenberg | |
and doing CONNECT to a proxy. The app would then busy-loop until the proxy completed its response. | |||
2008-05-09 | Removed an unused variable and one do-while loop that wasn't used either. | Daniel Stenberg | |
Added a few comments while at it. | |||
2008-05-09 | - Make Curl_write and it's callees accept a const pointer, in preparation | Michal Marek | |
of tetetest's patch for curl_easy_send() | |||
2008-05-08 | include strings.h (if available) for the strcasecmp() proto | Daniel Stenberg | |
2008-05-08 | check for strings.h in configure and use it for the strcasecmp() proto | Daniel Stenberg | |
2008-05-08 | fix compiler warning: format '%ld' expects type 'long int' | Yang Tse | |
2008-05-07 | adjusted to work with the updated configure.ac | Daniel Stenberg | |
2008-05-07 | - Sebastian made c-ares able to return all PTR-records when doing reverse | Daniel Stenberg | |
lookups. It is not common practice to have multiple PTR-Records for a single IP, but its perfectly legal and some sites have those. | |||
2008-05-07 | - Doug Goldstein provided a configure patch: updates autoconf 2.13 usage to | Daniel Stenberg | |
autoconf 2.57 usage (which is the version you have specified as the minimum version). It's a minor change but it does clean up some warnings with newer autoconf (specifically 2.62). | |||
2008-05-07 | -135 - Busy looping bug in multi_socket interface by | Daniel Stenberg | |
- Christopher Palow |