summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-07-12 12:31:13 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-07-12 12:31:13 +0000
commitecde3c9f3e46a78f653829f8b12241dc7fbe9fb2 (patch)
tree2da90cafcf53ca75af95ae22c8e9269a55447e4b /src/input
parent7329ae3b83a71b6bc9b55c659a582afb307acd08 (diff)
downloadxine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.gz
xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.bz2
- adding support for the Intel compiler icc
- general multipass compilation make targets CVS patchset: 5149 CVS date: 2003/07/12 12:31:13
Diffstat (limited to 'src/input')
-rw-r--r--src/input/input_pvr.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c
index 02b18b034..b0ff55650 100644
--- a/src/input/input_pvr.c
+++ b/src/input/input_pvr.c
@@ -38,7 +38,7 @@
* usage:
* xine pvr:/<prefix_to_tmp_files>\!<prefix_to_saved_files>\!<max_page_age>
*
- * $Id: input_pvr.c,v 1.28 2003/07/04 04:09:23 miguelfreitas Exp $
+ * $Id: input_pvr.c,v 1.29 2003/07/12 12:31:14 mroi Exp $
*/
/**************************************************************************
@@ -104,6 +104,10 @@
#include <pthread.h>
#include <sys/ioctl.h>
#ifdef USE_V4L2
+ #ifdef __ICC
+ /* __u64 will be undefined for icc, so we handle it here */
+ #define __u64 unsigned long long
+ #endif
#include "videodev2.h"
#else
#include <linux/videodev.h>