diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-05-08 22:11:38 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-05-08 22:11:38 +0000 |
commit | 7829b79768124eb6d3628267f71780121f245265 (patch) | |
tree | b16788ad1e3ac3dd1a000eef123f054f7193f592 /ares_process.c | |
parent | 7a68a3342bed9d33139e657005a17e0bde5b3bd4 (diff) | |
download | c-ares-7829b79768124eb6d3628267f71780121f245265.tar.gz c-ares-7829b79768124eb6d3628267f71780121f245265.tar.bz2 c-ares-7829b79768124eb6d3628267f71780121f245265.zip |
check for strings.h in configure and use it for the strcasecmp() proto
Diffstat (limited to 'ares_process.c')
-rw-r--r-- | ares_process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ares_process.c b/ares_process.c index d977d09..442e328 100644 --- a/ares_process.c +++ b/ares_process.c @@ -44,6 +44,9 @@ #endif #endif /* WIN32 && !WATT32 */ +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif |