1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-11-22 00:24:25 +00:00

Fixed for Mac OS X builds based on excellent feedback from Heinz Stockinger.

This commit is contained in:
Daniel Stenberg
2005-04-22 15:01:02 +00:00
parent 1a230e91e6
commit fce7f4a6f2
2 changed files with 10 additions and 0 deletions

View File

@ -23,8 +23,13 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#ifdef HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h>
#endif
#ifdef HAVE_ARPA_NAMESER_COMPAT_H
#include <arpa/nameser_compat.h>
#endif
#endif
#include <stdio.h>
#include <stdlib.h>

View File

@ -23,8 +23,13 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#ifdef HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h>
#endif
#ifdef HAVE_ARPA_NAMESER_COMPAT_H
#include <arpa/nameser_compat.h>
#endif
#endif
#include <stdlib.h>
#include <string.h>