From c67b459cb3ed3ac21351cd611003be64c0d0f48e Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 15 Nov 2005 06:16:39 +0000 Subject: minor compile fixes for Mac OS X and MinGW svn path=/trunk/externals/ggee/; revision=3910 --- signal/streamout~.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'signal/streamout~.c') diff --git a/signal/streamout~.c b/signal/streamout~.c index e020419..a9c9d96 100755 --- a/signal/streamout~.c +++ b/signal/streamout~.c @@ -17,6 +17,9 @@ #include #endif +#ifdef __APPLE__ +#include +#endif /* Utility functions */ @@ -202,7 +205,9 @@ static t_int *streamout_perform(t_int *w) if (x->x_fd > 0) { /* send the format tag */ -#ifdef unix +#ifdef __APPLE__ + if (send(x->x_fd,(char*)&x->x_tag,sizeof(t_tag),SO_NOSIGPIPE) < 0) +#elif defined unix if (send(x->x_fd,(char*)&x->x_tag,sizeof(t_tag),/*MSG_DONTWAIT|*/MSG_NOSIGNAL) < 0) #else if (send(x->x_fd,(char*)&x->x_tag,sizeof(t_tag),0) < 0) @@ -217,7 +222,9 @@ static t_int *streamout_perform(t_int *w) for (sent = 0; sent < length;) { int res = 0; -#ifdef unix +#ifdef __APPLE__ + res = send(x->x_fd, bp, length-sent, SO_NOSIGPIPE); +#elif defined unix res = send(x->x_fd, bp, length-sent, /*MSG_DONTWAIT|*/MSG_NOSIGNAL); #else res = send(x->x_fd, bp, length-sent, 0); -- cgit v1.2.1