aboutsummaryrefslogtreecommitdiff
path: root/ares
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2009-09-05 20:11:32 +0000
committerGunter Knauf <gk@gknw.de>2009-09-05 20:11:32 +0000
commitc4c15288d200500b9776ad62bf873415b748f6c3 (patch)
treed9081cbbe876c66b529783e140fe7b4d4acfa598 /ares
parentaaed838872779eaa08f92acea9c848bd522bb14c (diff)
changed includes to match style how we do with all other *.c files.
Diffstat (limited to 'ares')
-rw-r--r--ares/ares_parse_srv_reply.c26
1 files changed, 17 insertions, 9 deletions
diff --git a/ares/ares_parse_srv_reply.c b/ares/ares_parse_srv_reply.c
index 5b1e218d4..82fd8afa9 100644
--- a/ares/ares_parse_srv_reply.c
+++ b/ares/ares_parse_srv_reply.c
@@ -20,17 +20,25 @@
#include "setup.h"
-#if defined(WIN32) && !defined(WATT32)
-#include "nameser.h"
+#ifdef HAVE_SYS_SOCKET_H
+# include <sys/socket.h>
+#endif
+#ifdef HAVE_NETINET_IN_H
+# include <netinet/in.h>
+#endif
+#ifdef HAVE_NETDB_H
+# include <netdb.h>
+#endif
+#ifdef HAVE_ARPA_INET_H
+# include <arpa/inet.h>
+#endif
+#ifdef HAVE_ARPA_NAMESER_H
+# include <arpa/nameser.h>
#else
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <netdb.h>
-#include <arpa/nameser.h>
-#ifdef HAVE_ARPA_NAMESER_COMPAT_H
-#include <arpa/nameser_compat.h>
+# include "nameser.h"
#endif
+#ifdef HAVE_ARPA_NAMESER_COMPAT_H
+# include <arpa/nameser_compat.h>
#endif
#include <stdlib.h>