Fix build error on OSX 10.6 by Guillaume Rischard, #79

This commit is contained in:
Guillaume Rischard 2009-09-19 08:32:57 +00:00 committed by Erik Ekman
parent 0cdd537819
commit 3879f96a80
4 changed files with 8 additions and 4 deletions

View file

@ -33,7 +33,8 @@
#else
#include <arpa/nameser.h>
#ifdef DARWIN
#include <arpa/nameser8_compat.h>
#define BIND_8_COMPAT
#include <arpa/nameser_compat.h>
#endif
#include <sys/socket.h>
#include <err.h>

View file

@ -34,7 +34,8 @@
#else
#include <arpa/nameser.h>
#ifdef DARWIN
#include <arpa/nameser8_compat.h>
#define BIND_8_COMPAT
#include <arpa/nameser_compat.h>
#endif
#include <termios.h>
#include <err.h>

View file

@ -27,7 +27,8 @@
#else
#include <arpa/nameser.h>
#ifdef DARWIN
#include <arpa/nameser8_compat.h>
#define BIND_8_COMPAT
#include <arpa/nameser_compat.h>
#endif
#include <arpa/inet.h>
#include <err.h>

View file

@ -33,7 +33,8 @@
#else
#include <arpa/nameser.h>
#ifdef DARWIN
#include <arpa/nameser8_compat.h>
#define BIND_8_COMPAT
#include <arpa/nameser_compat.h>
#endif
#define _XPG4_2
#include <sys/socket.h>