diff options
author | Edward Hervey <bilboed@bilboed.com> | 2006-03-12 15:25:51 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2006-03-12 15:25:51 +0000 |
commit | 3fa1bc1500a50af44204572d10904784b14b8a4f (patch) | |
tree | 1bbcc3eb128427cf8fb74d4df3e5c77eab677a01 /sys/v4l2/gstv4l2element.h | |
parent | bff11ca735fe3e4926ec571dd481ec6e9f8e95e8 (diff) | |
download | gst-plugins-bad-3fa1bc1500a50af44204572d10904784b14b8a4f.tar.gz gst-plugins-bad-3fa1bc1500a50af44204572d10904784b14b8a4f.tar.bz2 gst-plugins-bad-3fa1bc1500a50af44204572d10904784b14b8a4f.zip |
sys/v4l2/gstv4l2element.h: Remove tim's addition of "_stdint.h" since it doesn't make the PPC buildbot happy.
Original commit message from CVS:
* sys/v4l2/gstv4l2element.h:
Remove tim's addition of "_stdint.h" since it doesn't make the PPC
buildbot happy.
I will just use the same comment Ronald used when he added these lines:
Yet Another Hack (tm) for kernel header borkedness.
Diffstat (limited to 'sys/v4l2/gstv4l2element.h')
-rw-r--r-- | sys/v4l2/gstv4l2element.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/v4l2/gstv4l2element.h b/sys/v4l2/gstv4l2element.h index 71442039..23a6dd81 100644 --- a/sys/v4l2/gstv4l2element.h +++ b/sys/v4l2/gstv4l2element.h @@ -23,8 +23,6 @@ #ifndef __GST_V4L2ELEMENT_H__ #define __GST_V4L2ELEMENT_H__ -#include "_stdint.h" - /* Because of some really cool feature in video4linux1, also known as * 'not including sys/types.h and sys/time.h', we had to include it * ourselves. In all their intelligence, these people decided to fix @@ -38,7 +36,9 @@ * errors here, check your linux/time.h && sys/time.h header setup. */ #include <sys/types.h> +#include <linux/types.h> #define _LINUX_TIME_H +#define __user #include <linux/videodev2.h> #include <gst/gst.h> |