summaryrefslogtreecommitdiff
path: root/ares_process.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-05-08 22:11:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-05-08 22:11:38 +0000
commit7829b79768124eb6d3628267f71780121f245265 (patch)
treeb16788ad1e3ac3dd1a000eef123f054f7193f592 /ares_process.c
parent7a68a3342bed9d33139e657005a17e0bde5b3bd4 (diff)
downloadc-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.c3
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