summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-05-13don't keep in CVS this compilation time generated fileYang Tse3-6/+0
2008-05-13add MSVC6 project for acountry sample programYang Tse1-1/+1
2008-05-13update MSVC6 projects to use the multithreaded DLL runtime libraryYang Tse3-16/+16
2008-05-13add MSVC6 project for acountry sample programYang Tse2-0/+125
2008-05-12skip libtool C++ preprocessor compiler and linker checksYang Tse1-0/+4
2008-05-12ignore libcares.pcYang Tse1-0/+1
2008-05-12configure script will now define HAVE_CLOCK_GETTIME_MONOTONIC symbol onlyYang Tse3-54/+97
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-10fix syntax error: missing semicolonYang Tse1-1/+1
2008-05-10Add library checking for clock_gettime() supportYang Tse2-1/+80
2008-05-09Use monotonic time source if available.Yang Tse10-40/+113
2008-05-09Removed AC_PROG_CC_STDC again. It enforces C99/gnu99 stdandard which is tooDaniel Stenberg1-1/+0
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-08include strings.h (if available) for the strcasecmp() protoDaniel Stenberg3-0/+9
2008-05-08check for strings.h in configure and use it for the strcasecmp() protoDaniel Stenberg6-0/+16
2008-05-07adjusted to work with the updated configure.acDaniel Stenberg1-1/+1
2008-05-07- Sebastian made c-ares able to return all PTR-records when doing reverseDaniel Stenberg2-2/+31
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 toDaniel Stenberg2-6/+14
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-05Improved parsing of resolver configuration filesYang Tse3-9/+58
2008-04-07make previous compiler warning fix more portableYang Tse1-4/+4
2008-04-07fix compiler warning: indirection to slightly different base typesYang Tse1-6/+6
2008-04-07fix compiler warning: local variable may be used without having been initializedYang Tse1-1/+1
2008-04-07fix compiler warning: unreferenced formal parameterYang Tse1-0/+2
2008-04-07fix compiler warning: assignment within conditional expressionYang Tse1-1/+1
2008-04-04- Alexey Simak fixed the VC dsp file by adding the missing source fileDaniel Stenberg2-0/+7
ares_expand_string.c
2008-04-04Alexey Simak made adig support NAPTR recordsDaniel Stenberg2-0/+38
2008-04-04Eino Tuominen improved the code when a file is used to seed the randomizerDaniel Stenberg2-5/+5
2008-02-29Force AIX xlc to fail and not generate object code if the source code hasYang Tse1-0/+3
compiled with errors. This behaviour is needed for autoconf macros which rely on the ability to compile with or without errors, and is safer than xlc's default of failing only upon severe errors.
2008-02-27added get_ver.awk since c-ares is a standalone project, and should therefore ↵Gunter Knauf1-0/+36
also compile when cURL is absent.
2008-02-27a couple of small fixes to the makefile:Gunter Knauf1-13/+7
fixed comments; fixed INSTDIR define, simplified rules; changed to use get_ver.awk in current dir rather than the curl one.
2008-02-16fixed linker def file for tools when compiled with gcc/nlmconv.Gunter Knauf1-1/+2
2008-02-14added some files which were missing in release tarballs.Gunter Knauf1-2/+3
2008-01-17updated copyright for new year.Gunter Knauf1-1/+1
2008-01-02Added '-d' option for Watt-32 debugging.Gisle Vanem1-1/+6
2007-12-18MSVC 9.0 (VS2008) does not support Windows build targets prior to WinXP,Yang Tse1-0/+14
and makes wrong asumptions of build target when it isn't specified. So, if no build target has been defined we will target WinXP when building with MSVC 9.0 (VS2008).
2007-12-11build acountry tooDaniel Stenberg1-1/+4
2007-12-11Added acountry.c.Gisle Vanem1-2/+8
2007-12-11Added build of acountry.nlm.Gisle Vanem1-1/+1
2007-12-11Added build of acountry.exe.Gisle Vanem2-3/+6
2007-12-11Build acountry.exe. Added 'socklen_t' define.Gisle Vanem1-3/+6
2007-12-11Another sample application that returns country-code andGisle Vanem1-0/+584
name from an IPv4-address or host-name. Using the service of countries.nerd.dk.
2007-12-10grrr, the previous commit was meant to properly make sure that we don'tDaniel Stenberg1-4/+1
link any executables when doing debug builds since they kind of assume symbols provided by libcurl, but it also wrongly included acountry.c
2007-12-10when buildingDaniel Stenberg2-1/+13
2007-12-10build ahost and adig by default but don't install themDaniel Stenberg1-0/+8
2007-12-10Fix for targets that do have 'struct in6_addr', but which doesn'tGisle Vanem2-3/+3
define 's6_addr' as a macro.
2007-12-03Fix three issues previous cleanup introduces.Yang Tse1-12/+11
2007-12-03 Erik Kline cleaned up ares_gethostbyaddr.c:next_lookup() somewhatDaniel Stenberg2-31/+37
2007-12-03Brad Spencer fixed the configure script to assume that there's noDaniel Stenberg2-2/+15
/dev/urandom when built cross-compiled as then the script cannot check for it.
2007-11-28the gethostbyname fix applied here as wellDaniel Stenberg1-1/+5
2007-11-28fix next_lookup() to continue searching even if c-ares failed to load theDaniel Stenberg1-1/+5
/etc/hosts file, pointed out by Erik Kline: http://daniel.haxx.se/projects/c-ares/mail/c-ares-archive-2007-11/0027.shtml
2007-11-27Remove the check for libdl since that isn't actually used and it causesDaniel Stenberg1-3/+0
warnings. Pointed out by Robin Cornelius.
2007-11-27pkgconfig fix by Andreas SchuldeiDaniel Stenberg1-0/+2