25 lines
793 B
Text
25 lines
793 B
Text
$NetBSD: patch-aa,v 1.4 2012/04/18 17:47:22 hans Exp $
|
|
|
|
--- include/libv4lconvert.h.orig 2008-09-08 14:33:17.000000000 -0400
|
|
+++ include/libv4lconvert.h 2008-09-08 14:34:03.000000000 -0400
|
|
@@ -22,10 +22,20 @@
|
|
/* These headers are not needed by us, but by linux/videodev2.h,
|
|
which is broken on some systems and doesn't include them itself :( */
|
|
#include <sys/time.h>
|
|
+#ifdef __linux__
|
|
#include <linux/types.h>
|
|
#include <linux/ioctl.h>
|
|
/* end broken header workaround includes */
|
|
#include <linux/videodev2.h>
|
|
+#elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__sun)
|
|
+#include <sys/types.h>
|
|
+#include <sys/ioctl.h>
|
|
+#if defined(__sun)
|
|
+#include <sys/videodev2.h>
|
|
+#else
|
|
+#include <sys/videoio.h>
|
|
+#endif
|
|
+#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|