summaryrefslogtreecommitdiffstats
path: root/sys/v4l2/gstv4l2object.h
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2008-01-21 19:35:58 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-01-21 19:35:58 +0000
commita973a4f154d9e17ed6551f3511f6a2bdc38f580f (patch)
tree0e1598d718fe32873217e9cd94a475b0d3cd4b23 /sys/v4l2/gstv4l2object.h
parent612cbd9b47c82f2f18109d915cd38efdc73d7bc9 (diff)
configure.ac: Detect video4linux headers on Solaris too.
Original commit message from CVS: * configure.ac: Detect video4linux headers on Solaris too. * sys/v4l2/gstv4l2colorbalance.h: * sys/v4l2/gstv4l2object.h: * sys/v4l2/v4l2_calls.c: * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize), (gst_v4l2_buffer_new): Make v4l2 build on Solaris. Patch by: Brian Cameron <brian.cameron at sun dot com> Fixes: #510505
Diffstat (limited to 'sys/v4l2/gstv4l2object.h')
-rw-r--r--sys/v4l2/gstv4l2object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/v4l2/gstv4l2object.h b/sys/v4l2/gstv4l2object.h
index f309bc7d..d08d2743 100644
--- a/sys/v4l2/gstv4l2object.h
+++ b/sys/v4l2/gstv4l2object.h
@@ -37,10 +37,14 @@
* errors here, check your linux/time.h && sys/time.h header setup.
*/
#include <sys/types.h>
+#ifndef __sun
#include <linux/types.h>
#define _LINUX_TIME_H
#define __user
#include <linux/videodev2.h>
+#else
+#include <sys/videodev2.h>
+#endif
#include <gst/gst.h>
#include <gst/base/gstpushsrc.h>