Don't check for HAVE_ defines in this header file, it is meant to be public
authorDaniel Stenberg <daniel@haxx.se>
Wed, 25 Feb 2004 07:22:00 +0000 (07:22 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 25 Feb 2004 07:22:00 +0000 (07:22 +0000)
and we can't depend on configure-defines in it. This logic is borrowed from
the public curl headers.

ares.h

diff --git a/ares.h b/ares.h
index c3959e0..09efa13 100644 (file)
--- a/ares.h
+++ b/ares.h
 
 #include <sys/types.h>
 
-#ifdef HAVE_SYS_SELECT_H
+#ifdef _AIX
+/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
+   libc5-based Linux systems. Only include it on system that are known to
+   require it! */
 #include <sys/select.h>
 #endif