diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-02-27 19:40:29 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-02-27 19:40:29 +0000 |
commit | edea4583028eacf91bf7324eb0beedcb7369e103 (patch) | |
tree | 847778e0739acbc76f298e16c807a6a30e309a5c | |
parent | 1a7dce4d414c65be04312a81876d04877d18eb66 (diff) | |
download | xine-lib-edea4583028eacf91bf7324eb0beedcb7369e103.tar.gz xine-lib-edea4583028eacf91bf7324eb0beedcb7369e103.tar.bz2 |
Include bsd headers only in bsd.
CVS patchset: 1531
CVS date: 2002/02/27 19:40:29
-rw-r--r-- | src/video_out/video_out_xv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index f5a1b5327..b1ba799ab 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_xv.c,v 1.100 2002/02/27 11:42:39 guenter Exp $ + * $Id: video_out_xv.c,v 1.101 2002/02/27 19:40:29 f1rmb Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -42,7 +42,9 @@ #include <string.h> #include <math.h> +#if defined(__FreeBSD__) #include <machine/param.h> +#endif #include <sys/types.h> #include <sys/ipc.h> #include <sys/shm.h> |