aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-23 16:20:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-23 16:20:42 +0000
commitfce6783be48b880f2f9327c971de964ab62cb471 (patch)
treea8161b2a0cf9912a9aba1fed5ce18ca0f5144c45
parent48bc26e7e3f767148c7d57f313027db1e90f3746 (diff)
check for a few basic header files
-rw-r--r--ares/configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/ares/configure.ac b/ares/configure.ac
index 5080cf262..1bb474bfb 100644
--- a/ares/configure.ac
+++ b/ares/configure.ac
@@ -58,4 +58,12 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]),
AC_MSG_RESULT(no)
)
+dnl check for a few basic system headers we need
+AC_CHECK_HEADERS(
+ sys/types.h \
+ sys/time.h \
+ sys/select.h \
+ sys/socket.h \
+ )
+
AC_OUTPUT(Makefile)