diff options
| author | Timothy Collett | 2012-07-05 10:47:36 -0400 |
|---|---|---|
| committer | Timothy Collett | 2012-07-05 10:47:36 -0400 |
| commit | d0b2d0750dc2d529a152eba4f3f519f69ff7eab0 (patch) | |
| tree | a1d1018d52dd7fd5a8a432e71755dacf15b74f67 /src/SimpleSocket.h | |
| parent | f2722ca9ac49f8f13da4ddcfcb0fa47a0eb30454 (diff) | |
| download | clsocket-d0b2d0750dc2d529a152eba4f3f519f69ff7eab0.tar.gz clsocket-d0b2d0750dc2d529a152eba4f3f519f69ff7eab0.tar.bz2 clsocket-d0b2d0750dc2d529a152eba4f3f519f69ff7eab0.tar.xz | |
Re-fix the problems building clsocket on OS X by standardizing on _DARWIN
Diffstat (limited to 'src/SimpleSocket.h')
| -rwxr-xr-x | src/SimpleSocket.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/SimpleSocket.h b/src/SimpleSocket.h index 83ac880..17868d6 100755 --- a/src/SimpleSocket.h +++ b/src/SimpleSocket.h @@ -49,7 +49,7 @@ #include <stdarg.h> #include <errno.h> -#if defined(_LINUX) || defined (__APPLE__) +#if defined(_LINUX) || defined (_DARWIN) #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> @@ -57,16 +57,16 @@ #include <netinet/ip.h> #include <netdb.h> #endif -#if defined(_LINUX) && !defined(__APPLE__) +#ifdef _LINUX #include <linux/if_packet.h> #include <linux/if_ether.h> #include <linux/if.h> #include <sys/sendfile.h> #endif -#ifdef __APPLE__ +#ifdef _DARWIN #include <net/if.h> #endif -#if defined(_LINUX) || defined (__APPLE__) +#if defined(_LINUX) || defined (_DARWIN) #include <sys/time.h> #include <sys/uio.h> #include <unistd.h> |
