aboutsummaryrefslogtreecommitdiff
path: root/ares
AgeCommit message (Collapse)Author
2008-10-08refactoring of COMPILER_BASIC_OPTSYang Tse
2008-10-08Initial attempt to detect SUN C compilerYang Tse
2008-10-08Initial attempt to detect HP C compilerYang Tse
2008-10-07fix compiler warning: 'dot_4' may be used uninitialized in this functionYang Tse
2008-10-07adjust ICC_windows settingsYang Tse
2008-10-07fix VAR_STRIPYang Tse
2008-10-07Sync up with realityYang Tse
2008-10-07Initial attempt to support configure's --(dis|en)able-optimizeYang 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-02fix commentYang Tse
2008-10-02Initial attempt to support configure's --(dis|en)able-warningsYang 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-30fix compiler warning: dereferencing type-punned pointer will break ↵Yang Tse
strict-aliasing rules
2008-09-30now compiler warnings are activated for all gcc builds, not only debug ones.Yang Tse
2008-09-30Use CFLAGS for icc linker options instead of LDFLAGS,Yang Tse
otherwise gethostbyname() is not detected.
2008-09-29use ac_cv_compiler and ac_cv_compiler_num to keep compiler ID and version numberYang Tse
2008-09-29Temporary icc adjustment:Yang Tse
Disable floating point optimizations
2008-09-24HAVE_INET_PTON will only be defined when an IPv6 capable workingYang Tse
inet_pton function is available.
2008-09-24HAVE_INET_NTOP will only be defined when an IPv6 capable workingYang Tse
inet_ntop function is available.
2008-09-24ntoa() and inet_ntoa_r() no longer usedYang Tse
2008-09-22icc 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-22attempt to make work the gethostname functionYang Tse
check for winsock build target configurations
2008-09-21Added HAVE_NETDB_H, HAVE_ARPA_INET_H, HAVE_STRCASECMPGisle Vanem
and HAVE_STRNCASECMP.
2008-09-19icc 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-18icc adjustmentsYang Tse
2008-09-18fix netdb.h prerequisite inclusionYang Tse
2008-09-17improve detection of getservbyport_r()Yang Tse
2008-09-17On Linux Intel's icc uses gcc's header files, soYang Tse
we select ANSI C89 dialect plus GNU extensions.
2008-09-17improve detection of gethostname()Yang Tse
2008-09-17NetWare builds include "nameser.h" from the c-ares subdirYang Tse
2008-09-17include <strings.h>Yang Tse
2008-09-17Sync up with realityYang Tse
2008-09-17adjust inclusion of "nameser.h"Yang Tse
2008-09-17reorder some lines in fileYang Tse
2008-09-16code cleanupYang Tse
2008-09-16NetWare seems to have writev()Yang Tse
2008-09-16rearrange to allow internal/private use of ares_writev to any systemYang Tse
that lacks the writev function.
2008-09-15NetWare CLIB target has stricmp() and strnicmp()Yang Tse
2008-09-15include header file only when availableYang Tse
2008-09-15rearrange to allow internal/private use of ares_strcasecmp to any system thatYang Tse
lacks the strcasecmp function.
2008-09-15improve detection of:Yang Tse
strcasecmp() strcmpi() stricmp() strncasecmp() strncmpi() strnicmp()
2008-09-13*** empty log message ***Yang Tse
2008-09-12djgpp does have strdup().Gisle Vanem
2008-09-12change CRLF into LF line endingsYang Tse
2008-09-11strdup() clone for systems/configurations which lack itYang Tse
2008-09-11move inclusion of ares_private.h lastYang Tse
2008-09-10icc adjustmentsYang Tse
2008-09-09icc adjustmentsYang Tse
2008-09-08Select strict ANSI C89 conformance for iccYang Tse
2008-09-06remove unnecessary typecasting of malloc()Yang Tse
2008-09-06remove unnecessary typecasting of realloc()Yang Tse
2008-08-29we start over working towards 1.5.4Daniel Stenberg