From: Daniel Stenberg Date: Mon, 23 Feb 2004 16:20:42 +0000 (+0000) Subject: check for a few basic header files X-Git-Tag: curl-7_11_1~233 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fce6783be48b880f2f9327c971de964ab62cb471;p=thirdparty%2Fcurl.git check for a few basic header files --- diff --git a/ares/configure.ac b/ares/configure.ac index 5080cf2620..1bb474bfb4 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)