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_parse_ptr_reply.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_parse_ptr_reply.c')
-rw-r--r-- | ares_parse_ptr_reply.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ares_parse_ptr_reply.c b/ares_parse_ptr_reply.c index 7025158..070bce8 100644 --- a/ares_parse_ptr_reply.c +++ b/ares_parse_ptr_reply.c @@ -28,6 +28,9 @@ #include <arpa/nameser_compat.h> #endif #endif +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif #include <stdlib.h> #include <string.h> |