diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-23 16:20:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-23 16:20:42 +0000 |
commit | fce6783be48b880f2f9327c971de964ab62cb471 (patch) | |
tree | a8161b2a0cf9912a9aba1fed5ce18ca0f5144c45 | |
parent | 48bc26e7e3f767148c7d57f313027db1e90f3746 (diff) |
check for a few basic header files
-rw-r--r-- | ares/configure.ac | 8 |
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) |