diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-03-30 13:58:01 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-03-30 13:58:01 +0000 |
commit | 94635ae720a892df2d39d1d3f2e80136b4f7bd49 (patch) | |
tree | 0e5c659322f9f39cbc7ebb720618a09554edd127 /sys/v4l2 | |
parent | 6df58336de8284b1f28a24197eccce1a9b1033d0 (diff) | |
download | gst-plugins-bad-94635ae720a892df2d39d1d3f2e80136b4f7bd49.tar.gz gst-plugins-bad-94635ae720a892df2d39d1d3f2e80136b4f7bd49.tar.bz2 gst-plugins-bad-94635ae720a892df2d39d1d3f2e80136b4f7bd49.zip |
0.6.1 accepted release patch fixes v4l/v4l2 plugin compilation problems
Original commit message from CVS:
0.6.1 accepted release patch fixes v4l/v4l2 plugin compilation problems
Diffstat (limited to 'sys/v4l2')
-rw-r--r-- | sys/v4l2/gstv4l2element.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/v4l2/gstv4l2element.h b/sys/v4l2/gstv4l2element.h index 87ebaad9..ac0e65fb 100644 --- a/sys/v4l2/gstv4l2element.h +++ b/sys/v4l2/gstv4l2element.h @@ -21,8 +21,22 @@ #define __GST_V4L2ELEMENT_H__ #include <gst/gst.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 + * this in the next version (video4linux2) in such a cool way that it + * breaks all compilations of old stuff... + * The real problem is actually that linux/time.h doesn't use proper + * macro checks before defining types like struct timeval. The proper + * fix here is to either fuck the kernel header (which is what we do + * by defining _LINUX_TIME_H, an innocent little hack) or by fixing it + * upstream, which I'll consider doing later on. If you get compiler + * errors here, check your linux/time.h && sys/time.h header setup. + */ #include <sys/types.h> #include <linux/types.h> +#define _LINUX_TIME_H #include <linux/videodev2.h> |