summaryrefslogtreecommitdiff
path: root/ares/m4
Commit message (Collapse)AuthorAgeFilesLines
* remove outdated commentYang Tse2009-05-151-5/+1
|
* Proper naming for the experimental compiler test and moved to *-compilers.m4Yang Tse2009-05-071-1/+63
|
* Moved *_CHECK_COMPILER_HALT_ON_ERROR and ↵Yang Tse2009-05-071-4/+51
| | | | *_CHECK_COMPILER_ARRAY_SIZE_NEGATIVE to *-compilers.m4 along with other *_CHECK_COMPILER_*
* Added CARES_INCLUDES_SYS_TYPESYang Tse2009-04-281-1/+19
|
* Initial step towards a configure time curl_socklen_t definitionYang Tse2009-04-261-2/+19
|
* remove compiler options used while debugging the icc 9.1 optimizer issueYang Tse2009-04-171-42/+1
|
* Set HP-UX compiler warning level back to the one that exposesYang Tse2009-04-151-3/+3
| | | | the socklen_t issue on this platform.
* ignoreYang Tse2009-02-131-0/+5
|
* Make checking for struct ifreq a prerequisite for settingDan Fandrich2008-11-201-4/+6
| | | | | HAVE_IOCTL_SIOCGIFADDR since it's needed to use SIOCGIFADDR and Watcom C doesn't currently define it.
* user provided PATH_SEPARATOR always overrides auto-detected oneYang Tse2008-11-191-3/+1
|
* attempting to keep lines below 80 charsYang Tse2008-11-181-1/+8
|
* provide a common PATH_SEPARATOR check method which is required byYang Tse2008-11-182-2/+94
| | | | 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-1/+189
|
* Make configure script check if ioctl with the SIOCGIFADDR command can beYang Tse2008-11-171-1/+57
| | | | used, and define HAVE_IOCTL_SIOCGIFADDR if appropriate.
* fix leftover from previous commitYang Tse2008-11-171-2/+2
|
* fix inet_pton() runtime configure checkYang Tse2008-11-171-15/+4
|
* trim down configure script sizeYang Tse2008-11-161-0/+87
|
* fix typo affecting inclusion of <arpa/inet.h> in configureYang Tse2008-11-141-2/+2
| | | | checks for inet_ntoa_r() inet_ntop() and inet_pton()
* #include <string.h> in the getaddrinfo() runtime check for the memset() ↵Yang Tse2008-11-141-1/+3
| | | | prototype
* fix symbol definition check for fcntl.h inclusionYang Tse2008-11-141-2/+2
|
* Refactor configure script detection of functions used to set sockets intoYang Tse2008-11-132-2/+858
| | | | non-blocking mode, and decouple function detection from function capability.
* check for freeaddrinfo() at configuration phaseYang Tse2008-10-301-1/+97
|
* update aclocal file serial numberYang Tse2008-10-301-1/+1
|
* remove verification of the freeability of the addrinfo struct pointer membersYang Tse2008-10-301-147/+0
|
* fix commentYang Tse2008-10-291-2/+2
|
* make CHECK_FUNC_GETADDRINFO_UNFREEABLE_AI_ADDRYang Tse2008-10-291-134/+132
| | | | | and CHECK_FUNC_GETADDRINFO_UNFREEABLE_AI_CANONNAME internal to CHECK_FUNC_GETADDRINFO
* fix leftoverYang Tse2008-10-281-2/+2
|
* Initial attempt to detect at configuration time if the getaddrinfo()Yang Tse2008-10-281-0/+75
| | | | 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/+259
| | | | function returns an addrinfo with an unfreeable ai_addr member ptr.
* icc adjustments:Yang Tse2008-10-251-4/+2
| | | | Select ANSI C89 dialect plus GNU extensions, again.
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-241-0/+9
|
* icc permanent adjustment:Yang Tse2008-10-241-38/+40
| | | | | | | | Select precise floating-point model, otherwise doubles are less than 64-bit wide icc test adjustment: Select c89 dialect
* icc adjustments:Yang Tse2008-10-231-30/+51
| | | | | | Enable more icc warnings. Optimization disabling options used only for icc 9.1
* #include <stdlib.h> for exit() prototypeYang Tse2008-10-231-1/+26
|
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-221-5/+17
|
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-211-0/+8
|
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-201-5/+11
|
* messages initially intended only for debug purposes, now become permanentYang Tse2008-10-191-4/+4
| | | | since these are extremely useful when compiler rejects a set of options.
* fix missing double-quotesYang Tse2008-10-171-6/+6
|
* some more temporary magic for the icc seg-fault issueYang Tse2008-10-161-1/+11
|
* Ensure that shell variable contents which have active meaningYang Tse2008-10-151-16/+58
| | | | | to the shell echo command are not interpreted when trying to remove extra whitespace from shell variable content.
* Adjust Watcom C warnings:Yang Tse2008-10-141-2/+2
| | | | Disable warnings on structure members padding.
* With this change Solaris target builds will now be done with _REENTRANT defined.Yang Tse2008-10-141-5/+23
|
* Adjust Tiny C basic options:Yang Tse2008-10-141-2/+2
| | | | | Remove -b from debug-enabled configuration, as Tiny C might have been built without the memory and bounds checker support.
* Adjust GCC warnings:Yang Tse2008-10-141-31/+61
| | | | | | | | | | Better disable following warnings when cross-compiling with a gcc older than 3.0, to avoid warnings from third party system headers: -Wmissing-declarations -Wmissing-prototypes -Wunused -Wshadow
* fix syntax errorYang Tse2008-10-141-1/+1
|
* Initial attempt to detect Watcom C compilerYang Tse2008-10-141-0/+60
|
* make naming scheme more consistent across whole fileYang Tse2008-10-131-75/+74
|
* Adjust GCC warnings:Yang Tse2008-10-131-2/+14
| | | | | | | | | Disable following warnings when cross-compiling with a gcc older than 3.0, to avoid warnings from third party system headers: -Wmissing-prototypes -Wunused -Wshadow
* Adjust GCC --enable-warnings:Yang Tse2008-10-131-1/+13
| | | | | Do not enable -pedantic when cross-compiling with a gcc older than 3.0, to avoid warnings from third party system headers.