summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-04-09 15:29:33 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-04-09 15:29:33 +0000
commitbc9e4e15a9e9a313e5835694da114f6b6ba350c1 (patch)
tree9f610555a429e03e5f29e1a7fffc6ce477dc936c
parent5b4795e9f35230e97a8a4ec61de6681eed4aa3f9 (diff)
downloadxine-lib-bc9e4e15a9e9a313e5835694da114f6b6ba350c1.tar.gz
xine-lib-bc9e4e15a9e9a313e5835694da114f6b6ba350c1.tar.bz2
on FreeBSD alpha, sys/types.h is needed before machine/param.h
patch by Klaus Robert Suetterlin <robert@mpe.mpg.de> CVS patchset: 6364 CVS date: 2004/04/09 15:29:33
-rw-r--r--src/video_out/video_out_xv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 715b07761..6104c55d9 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.194 2004/04/07 19:35:42 pmhahn Exp $
+ * $Id: video_out_xv.c,v 1.195 2004/04/09 15:29:33 mroi Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -50,10 +50,10 @@
# include <stdint.h>
#endif
+#include <sys/types.h>
#if defined(__FreeBSD__)
#include <machine/param.h>
#endif
-#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/time.h>