From 659b1d588de6ea9ffae41ff3eb8d6b3f362f14ff Mon Sep 17 00:00:00 2001 From: phintuka Date: Tue, 27 Mar 2007 02:33:09 +0000 Subject: Use correct endian.h for MAC OS X (Patch from Tero Siironen) --- tools/rtcp.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'tools/rtcp.h') diff --git a/tools/rtcp.h b/tools/rtcp.h index 31ae594a..bb09b9e7 100644 --- a/tools/rtcp.h +++ b/tools/rtcp.h @@ -4,14 +4,23 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: rtcp.h,v 1.1 2006-12-14 12:01:54 phintuka Exp $ + * $Id: rtcp.h,v 1.2 2007-03-27 02:33:09 phintuka Exp $ * */ #ifndef XINELIBOUTPUT_RTCP_H_ #define XINELIBOUTPUT_RTCP_H_ -#include +#ifdef __APPLE__ +# ifdef __i386__ +# include +# else +# include +# endif +#else +# include +#endif + #ifndef PACKED # define PACKED __attribute__((packed)) -- cgit v1.2.3